mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
118 lines
3.4 KiB
XML
118 lines
3.4 KiB
XML
<clickhouse>
|
|
<tcp_port_secure>9440</tcp_port_secure>
|
|
<remote_servers>
|
|
|
|
<!-- Main cluster -->
|
|
<cluster>
|
|
<shard>
|
|
<internal_replication>true</internal_replication>
|
|
<replica>
|
|
<host>ch1</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
<replica>
|
|
<host>ch2</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
</shard>
|
|
<shard>
|
|
<internal_replication>true</internal_replication>
|
|
<replica>
|
|
<host>ch3</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
<replica>
|
|
<host>ch4</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
</shard>
|
|
</cluster>
|
|
|
|
<!-- Cluster with specified default database -->
|
|
<cluster2>
|
|
<shard>
|
|
<internal_replication>true</internal_replication>
|
|
<replica>
|
|
<host>ch1</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
<default_database>default</default_database>
|
|
</replica>
|
|
<replica>
|
|
<host>ch2</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
<default_database>test2</default_database>
|
|
</replica>
|
|
</shard>
|
|
<shard>
|
|
<internal_replication>true</internal_replication>
|
|
<replica>
|
|
<host>ch3</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
<default_database>default</default_database>
|
|
</replica>
|
|
<replica>
|
|
<host>ch4</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
<default_database>test2</default_database>
|
|
</replica>
|
|
</shard>
|
|
</cluster2>
|
|
|
|
<!-- Cluster without replicas -->
|
|
<cluster_no_replicas>
|
|
<shard>
|
|
<internal_replication>false</internal_replication>
|
|
<replica>
|
|
<host>ch1</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
</shard>
|
|
<shard>
|
|
<internal_replication>false</internal_replication>
|
|
<replica>
|
|
<host>ch2</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
</shard>
|
|
<shard>
|
|
<internal_replication>false</internal_replication>
|
|
<replica>
|
|
<host>ch3</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
</shard>
|
|
<shard>
|
|
<internal_replication>false</internal_replication>
|
|
<replica>
|
|
<host>ch4</host>
|
|
<port>9440</port>
|
|
<secure>1</secure>
|
|
</replica>
|
|
</shard>
|
|
</cluster_no_replicas>
|
|
|
|
<!-- Cluster with disabled distributed DDL queries -->
|
|
<cluster_disabled_ddl>
|
|
<allow_distributed_ddl_queries>false</allow_distributed_ddl_queries>
|
|
<shard>
|
|
<replica>
|
|
<host>ch1</host>
|
|
<port>9000</port>
|
|
</replica>
|
|
</shard>
|
|
</cluster_disabled_ddl>
|
|
|
|
</remote_servers>
|
|
</clickhouse>
|