-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace all vtctlclient usage for vreplication commands (#1619)
* Replace all vtctlclient usage Signed-off-by: Matt Lord <[email protected]> * Revert OnlineDDL changes Those will have to be done separately Signed-off-by: Matt Lord <[email protected]> * Changes after self review Signed-off-by: Matt Lord <[email protected]> * The the Signed-off-by: Matt Lord <[email protected]> * Overview and deprecated page removals Signed-off-by: Matt Lord <[email protected]> * MoveTables Signed-off-by: Matt Lord <[email protected]> * Picking away. And incorporating changes from: vitessio/vitess#14280 Signed-off-by: Matt Lord <[email protected]> * Reshard page Signed-off-by: Matt Lord <[email protected]> * Update reference docs from main Signed-off-by: Matt Lord <[email protected]> * Materialize Signed-off-by: Matt Lord <[email protected]> * LookupVindex Signed-off-by: Matt Lord <[email protected]> * Tablet selection Signed-off-by: Matt Lord <[email protected]> * Throttling Signed-off-by: Matt Lord <[email protected]> * Migrate Signed-off-by: Matt Lord <[email protected]> * Shard level migrations Signed-off-by: Matt Lord <[email protected]> * Mount page Signed-off-by: Matt Lord <[email protected]> * Remaining user guide changes Signed-off-by: Matt Lord <[email protected]> * Update transition page Signed-off-by: Matt Lord <[email protected]> * Revert docs rebuild. I did this to verify the links as the Materialize, Mount, and Migrate commands are not documented yet. I will open a separate PR to rebuild the reference docs. Signed-off-by: Matt Lord <[email protected]> * Small correction Signed-off-by: Matt Lord <[email protected]> * More changes from review Signed-off-by: Matt Lord <[email protected]> * Changes from self review Signed-off-by: Matt Lord <[email protected]> * Copy changes to v18 docs Signed-off-by: Matt Lord <[email protected]> --------- Signed-off-by: Matt Lord <[email protected]>
- Loading branch information
Showing
68 changed files
with
2,105 additions
and
3,293 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
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
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
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
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
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
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
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
48 changes: 0 additions & 48 deletions
48
content/en/docs/18.0/reference/vreplication/createlookupvindex.md
This file was deleted.
Oops, something went wrong.
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
23 changes: 23 additions & 0 deletions
23
content/en/docs/18.0/reference/vreplication/lookupvindex.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,23 @@ | ||
--- | ||
title: LookupVindex | ||
description: Create, backfill, and externalize Lookup Vindexes | ||
weight: 60 | ||
--- | ||
|
||
[`LookupVindex`](../../../reference/programs/vtctldclient/vtctldclient_lookupvindex/) is a command used to create **and** backfill | ||
a [Lookup Vindex](../../../reference/features/vindexes/#lookup-vindex-types) automatically for a table that already | ||
exists, and may have a significant amount of data in it already. | ||
|
||
Internally, the [`LookupVindex create`](../../../reference/programs/vtctldclient/vtctldclient_lookupvindex/vtctldclient_lookupvindex_create/) command uses | ||
VReplication for the backfill process, until the lookup Vindex is "in sync". Then the normal process for | ||
adding/deleting/updating rows in the lookup Vindex via the usual | ||
[transactional flow when updating the "owner" table for the Vindex](../../../reference/features/vindexes/#lookup-vindex-types) | ||
takes over. | ||
|
||
## Command | ||
|
||
Please see the [`LookupVindex` command reference](../../../reference/programs/vtctldclient/vtctldclient_lookupvindex/) for a full list of sub-commands and their flags. | ||
|
||
## Additional Information | ||
|
||
Please see the user guide for examples of [Creating a Lookup Vindex](../../../user-guides/configuration-advanced/createlookupvindex/) for more information on how to use this command. |
Oops, something went wrong.