ADMIN SHOW REPLICA DISTRIBUTION
Description
This statement is used to show the distribution status of a table or a partition replica.
tip
This operation requires the SYSTEM-level OPERATE privilege. You can follow the instructions in GRANT to grant this privilege.
Syntax
ADMIN SHOW REPLICA DISTRIBUTION FROM [db_name.]tbl_name [PARTITION (p1, ...)]
Note:
The Graph column in the result shows the distribution ratio of replicas graphically.
Examples
-
View the replica distribution of tables
ADMIN SHOW REPLICA DISTRIBUTION FROM tbl1;
-
View the replica distribution of partitions in the table
ADMIN SHOW REPLICA DISTRIBUTION FROM db1.tbl1 PARTITION(p1, p2);