ClickHouse/tests/integration/test_keeper_snapshots/configs/enable_keeper.xml

30 lines
1.1 KiB
XML
Raw Normal View History

<clickhouse>
2021-03-29 08:35:26 +00:00
<keeper_server>
2021-03-03 12:21:21 +00:00
<tcp_port>9181</tcp_port>
<server_id>1</server_id>
<log_storage_path>/var/lib/clickhouse/coordination/log</log_storage_path>
<snapshot_storage_path>/var/lib/clickhouse/coordination/snapshots</snapshot_storage_path>
<coordination_settings>
<snapshot_distance>10</snapshot_distance>
<reserved_log_items>5</reserved_log_items>
<operation_timeout_ms>5000</operation_timeout_ms>
<session_timeout_ms>10000</session_timeout_ms>
<raft_logs_level>trace</raft_logs_level>
2021-10-20 07:56:29 +00:00
<!-- For instant start in single node configuration -->
<heart_beat_interval_ms>0</heart_beat_interval_ms>
<election_timeout_lower_bound_ms>0</election_timeout_lower_bound_ms>
<election_timeout_upper_bound_ms>0</election_timeout_upper_bound_ms>
2021-03-03 12:21:21 +00:00
</coordination_settings>
<raft_configuration>
<server>
<id>1</id>
<hostname>localhost</hostname>
<port>44444</port>
</server>
</raft_configuration>
2021-03-29 08:35:26 +00:00
</keeper_server>
</clickhouse>