The lifecycle state of a physical table (replica) in a global table.
Data structure
PHY_PENDING: Pending. The replica table is waiting for other replicas in the global table to complete configuration.
PHY_INIT: Initializing. The replica table is being created or configured.
PHY_SYNCDATA: Synchronizing. Historical data is being synchronized and the incremental tunnel is being set up.
PHY_READY: Ready. Historical data synchronization and incremental tunnel setup are complete. The replica table is not writable.
PHY_ACTIVE: Active. The replica table is synchronizing and available for read and write operations.
PHY_UNBINDING: Detaching. The replica table is being detached from the global table. This operation does not delete the replica table or its data.
PHY_UNBOUND: Detached. The replica table has been detached from the global table. This operation does not delete the replica table or its data.
enum PhyTableStatus {
PHY_PENDING = 1;
PHY_INIT = 2;
PHY_SYNCDATA = 3;
PHY_READY = 4;
PHY_ACTIVE = 5;
PHY_UNBINDING = 6;
PHY_UNBOUND = 7;
}