--- 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](/sql/create-cluster#replication-factor) for each cluster configured in Materialize. ## Syntax ```sql SHOW CLUSTER REPLICAS [LIKE | WHERE ] ``` Option | Description ------------------------------|------------ **LIKE** \ | If specified, only show clusters that match the pattern. **WHERE** | If specified, only show clusters that match the condition(s). ## Examples ```mzsql SHOW CLUSTER REPLICAS; ``` ```nofmt cluster | replica | size | ready | ---------------+---------|--------|-------| auction_house | bigger | 1600cc | t | quickstart | r1 | 25cc | t | ``` ```mzsql SHOW CLUSTER REPLICAS WHERE cluster = 'quickstart'; ``` ```nofmt cluster | replica | size | ready| ---------------+---------|--------|------- quickstart | r1 | 25cc | t | ``` ## Related pages - [`CREATE CLUSTER REPLICA`](../create-cluster-replica) - [`DROP CLUSTER REPLICA`](../drop-cluster-replica)