mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
57d60dc4f2
* Refactor the code * Add a new column xid for zookeeper_connection * Support hostnames in the configuration * Fix a typo * Fix a typo * Fix a typo * Fix a bug about connect_time * Update test case * Update test case * Fix a special build check error * Resolve conflicts caused by rebase. * Update failed test case * Refactor the code according to comment * Fix two compilation errors
20 lines
682 B
XML
20 lines
682 B
XML
<clickhouse>
|
|
<zookeeper>
|
|
<!--<zookeeper_load_balancing>random / in_order / nearest_hostname / hostname_levenshtein_distance / first_or_random / round_robin</zookeeper_load_balancing>-->
|
|
<zookeeper_load_balancing>random</zookeeper_load_balancing>
|
|
<node index="1">
|
|
<host>127.0.0.1</host>
|
|
<port>9181</port>
|
|
</node>
|
|
</zookeeper>
|
|
<auxiliary_zookeepers>
|
|
<zookeeper2>
|
|
<node index="1">
|
|
<host>localhost</host>
|
|
<port>9181</port>
|
|
</node>
|
|
<root>/test/chroot/auxiliary_zookeeper2</root>
|
|
</zookeeper2>
|
|
</auxiliary_zookeepers>
|
|
</clickhouse>
|