show-cluster-replicas.md 1.2 KB


title: "SHOW CLUSTER REPLICAS" description: "SHOW CLUSTER REPLICAS lists the replicas for each cluster configured in Materialize." menu: main:

parent: 'commands'

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

Syntax

SHOW CLUSTER REPLICAS
[LIKE <pattern> | WHERE <condition(s)>]

Examples

SHOW CLUSTER REPLICAS;
    cluster    | replica |  size  | ready |
---------------+---------|--------|-------|
 auction_house | bigger  | 1600cc | t     |
 quickstart    | r1      | 25cc   | t     |
SHOW CLUSTER REPLICAS WHERE cluster = 'quickstart';
    cluster    | replica |  size  | ready|
---------------+---------|--------|-------
 quickstart    | r1      | 25cc   | t    |

Related pages

Option Description
LIKE <pattern> If specified, only show clusters that match the pattern.
WHERE If specified, only show clusters that match the condition(s).