-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docs for
onlineddl retry
and onlineddl cleanup
Signed-off-by: Andrew Mason <andrew@planetscale.com>
- Loading branch information
Andrew Mason
committed
Aug 22, 2023
1 parent
ad2eadb
commit 711f7ff
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
.../programs/vtctldclient/vtctldclient_OnlineDDL/vtctldclient_OnlineDDL_cleanup.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: OnlineDDL cleanup | ||
series: vtctldclient | ||
--- | ||
## vtctldclient OnlineDDL cleanup | ||
|
||
Mark a given schema migration ready for artifact cleanup. | ||
|
||
``` | ||
vtctldclient OnlineDDL cleanup <keyspace> <uuid> | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
OnlineDDL cleanup test_keyspace 82fa54ac_e83e_11ea_96b7_f875a4d24e90 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for cleanup | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--action_timeout duration timeout for the total command (default 1h0m0s) | ||
--server string server to use for connection (required) | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [vtctldclient OnlineDDL](../) - Operates on online DDL (schema migrations). | ||
|
35 changes: 35 additions & 0 deletions
35
...ce/programs/vtctldclient/vtctldclient_OnlineDDL/vtctldclient_OnlineDDL_retry.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: OnlineDDL retry | ||
series: vtctldclient | ||
--- | ||
## vtctldclient OnlineDDL retry | ||
|
||
Mark a given schema migration for retry. | ||
|
||
``` | ||
vtctldclient OnlineDDL retry <keyspace> <uuid> | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
vtctl OnlineDDL retry test_keyspace 82fa54ac_e83e_11ea_96b7_f875a4d24e90 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for retry | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--action_timeout duration timeout for the total command (default 1h0m0s) | ||
--server string server to use for connection (required) | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [vtctldclient OnlineDDL](../) - Operates on online DDL (schema migrations). | ||
|