ADMIN-SHOW-REPLICA-STATUS
Name
ADMIN SHOW REPLICA STATUS
Description
This statement is used to display the replica status information for a table or partition.
Syntax:
ADMIN SHOW REPLICA STATUS FROM [db_name.]tbl_name [PARTITION (p1, ...)]
[where_clause];
Note:
-
where_clause: WHERE STATUS [!]= "replica_status"
-
replica_status: OK: replica is healthy DEAD: The Backend where the replica is located is unavailable VERSION_ERROR: replica data version is missing SCHEMA_ERROR: The schema hash of the replica is incorrect MISSING: replica does not exist
Example
-
View the status of all replicas of the table
ADMIN SHOW REPLICA STATUS FROM db1.tbl1;
-
View a copy of a table with a partition status of VERSION_ERROR
ADMIN SHOW REPLICA STATUS FROM tbl1 PARTITION (p1, p2) WHERE STATUS = "VERSION_ERROR";
-
View all unhealthy replicas of the table
ADMIN SHOW REPLICA STATUS FROM tbl1 WHERE STATUS != "OK";
Keywords
ADMIN, SHOW, REPLICA, STATUS, ADMIN SHOW