SHOW CLUSTER REPLICAS

SHOW CLUSTER REPLICAS lists the replicas for each cluster configured in Materialize.

Syntax

SHOW CLUSTER REPLICAS LIKE pattern WHERE expr

Examples

SHOW CLUSTER REPLICAS;
    cluster    | replica |  size  | ready |
---------------+---------|--------|-------|
 auction_house | bigger  | xlarge | t     |
 default       | r1      | xsmall | t     |
SHOW CLUSTER REPLICAS WHERE cluster='default';
    cluster    | replica |  size  | ready|
---------------+---------|--------|-------
 default       | r1      | xsmall | t    |
Back to top ↑