SHOW CLUSTER REPLICAS

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

Syntax

SHOW CLUSTER REPLICAS [LIKE <pattern> | WHERE <condition(s)>] 
Option Description
LIKE <pattern> If specified, only show clusters that match the pattern.
WHERE <condition(s)> If specified, only show clusters that match the 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 | 
Back to top ↑