Manage tables and indexes
When DDL changes are made to databases in replication for xCluster disaster recovery (DR) (such as creating, altering, or dropping tables or partitions), the changes must be:
- performed at the SQL level on both the DR primary and replica, and then
- updated at the YugabyteDB Anywhere level in the DR configuration.
You should perform these actions in a specific order, depending on whether performing a CREATE, DROP, ALTER, and so forth, as indicated by the sequence number of the operation in the table below.
DDL | Step 1 | Step 2 | Step 3 |
---|---|---|---|
CREATE TABLE | Execute on Primary | Execute on Replica | Add table to replication |
DROP TABLE | Remove table from replication | Execute on Replica | Execute on Primary |
CREATE TABLE foo PARTITION OF bar |
Execute on Primary | Execute on Replica | Add table to replication |
CREATE INDEX | Execute on Primary | Execute on Replica | Reconcile configuration |
DROP INDEX | Execute on Replica | Execute on Primary | Reconcile configuration |
ALTER TABLE or INDEX | Execute on Replica | Execute on Primary | No changes needed |
ALTER TABLE ADD CONSTRAINT UNIQUE |
Execute on Primary | Execute on Replica | Reconcile configuration |
ALTER TABLE DROP CONSTRAINT (unique constraints only) |
Execute on Replica | Execute on Primary | Reconcile configuration |
In addition, keep in mind the following:
- If you are using Colocated tables, you CREATE TABLE on DR primary, then CREATE TABLE on DR replica making sure that you force the Colocation ID to be identical to that on DR primary.
- If you try to make a DDL change on DR primary and it fails, you must also make the same attempt on DR replica and get the same failure.
- TRUNCATE TABLE is not supported. To truncate a table, pause replication, truncate the table on both primary and standby, and resume replication.
Use the following guidance when managing tables and indexes in universes with DR configured.
Tables
Note: If you are performing application upgrades involving both adding and dropping tables, perform the upgrade in two parts: first add tables, then drop tables.
Add a table to DR
To ensure that data is protected at all times, set up DR on a new table before starting any workload.
If a table already has data before adding it to DR, then adding the table to replication can result in a backup and restore of the entire database from DR primary to replica.
Add tables to DR in the following sequence:
- Create the table on the DR primary (if it doesn't already exist).
- Create the table on the DR replica.
- Navigate to your DR primary universe xCluster Disaster Recovery tab and select the replication configuration.
- Click Actions and choose Select Databases and Tables.
- Select the tables and click Validate Selection.
- If data needs to be copied, click Next: Confirm Full Copy.
- Click Apply Changes.
Note the following:
-
If the newly added table already has data, then adding the table can trigger a full copy of that entire database from DR primary to replica.
-
It is recommended that you set up replication on the new table before starting any workload to ensure that data is protected at all times. This approach also avoids the full copy.
-
This operation also automatically adds any associated index tables of this table to the DR configuration.
-
If using colocation, colocated tables on the DR primary and replica should be created with the same colocation ID if they already exist on both the DR primary and replica prior to DR setup.
Remove a table from DR
When dropping a table, remove the table from DR before dropping the table in the DR primary and replica databases.
Remove tables from DR in the following sequence:
- Navigate to your DR primary universe xCluster Disaster Recovery tab and select the replication configuration.
- Click Actions and choose Select Databases and Tables.
- Deselect the tables and click Validate Selection.
- Click Apply Changes.
- Drop the table from the DR replica database.
- Drop the table from the DR primary database.
Indexes
Add an index to DR
Indexes are automatically added to replication in an atomic fashion after you create the indexes separately on DR primary and replica. You don't need to stop the writes on the DR primary.
CREATE INDEX may kill some in-flight transactions. This is a temporary error. Retry any failed transactions.
Add indexes to replication in the following sequence:
-
Create an index on the DR primary.
-
Wait for index backfill to finish.
-
Create the same index on the DR replica.
-
Wait for index backfill to finish.
For instructions on monitoring backfill, refer to Create indexes and track the progress.
Remove an index from DR
When an index is dropped it is automatically removed from DR.
Remove indexes from replication in the following sequence:
-
Drop the index on the DR replica.
-
Drop the index on the DR primary.
Table partitions
Add a table partition to DR
Adding a table partition is similar to adding a table.
The caveat is that the parent table (if not already) along with each new partition has to be added to DR, as DDL changes are not replicated automatically. Each partition is treated as a separate table and is added to DR separately (like a table).
For example, you can create a table with partitions as follows:
CREATE TABLE order_changes (
order_id int,
change_date date,
type text,
description text)
PARTITION BY RANGE (change_date);
CREATE TABLE order_changes_default PARTITION OF order_changes DEFAULT;
Create a new partition:
CREATE TABLE order_changes_2023_01 PARTITION OF order_changes
FOR VALUES FROM ('2023-01-01') TO ('2023-03-30');
Assume the parent table and default partition are included in the replication stream.
To add a table partition to DR, follow the same steps for Add a table to DR.
Remove table partitions from DR
To remove a table partition from DR, follow the same steps as Remove a table from DR.
Reconcile configuration
To ensure changes made outside of YugabyteDB Anywhere are reflected in YugabyteDB Anywhere, you need to reconcile the configuration as follows:
- Navigate to your DR primary universe xCluster Disaster Recovery tab and select the replication configuration.
- Click Actions > Advanced and choose Reconcile Config with Database.