docs/content/v2024.2/yugabyte-platform/back-up-restore-universes/disaster-recovery/disaster-recovery-tables.md
The following guidance is not required for Semi-automatic mode. Refer to Perform DDL operations.
In Manual mode, you must perform DDL changes on databases in replication for xCluster disaster recovery (DR) (such as creating, altering, or dropping tables or partitions) 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 following table.
| 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:
Use the following guidance when managing tables and indexes in universes when DR is configured in Manual mode.
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.
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:
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.
When dropping a table, remove the table from DR before dropping the table in the DR primary and replica databases.
{{< warning title="Drop tables after removing from replication" >}}
Disaster Recovery replicates all tables in a database. Remove a table from replication only when you intend to drop the table.
If you remove a table from replication and don't subsequently drop it from the database (on both primary and replica), the XCluster Config Tables are in bad state alert will fire.
{{< /warning >}}
Remove tables from DR in the following sequence:
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.
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.
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.
To remove a table partition from DR, follow the same steps as Remove a table from DR.
To ensure changes made outside of YugabyteDB Anywhere are reflected in YugabyteDB Anywhere, you need to reconcile the configuration as follows: