mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
20 lines
809 B
XML
20 lines
809 B
XML
<clickhouse>
|
|
<zookeeper>
|
|
<node index="1">
|
|
<host>localhost</host>
|
|
<port>9181</port>
|
|
</node>
|
|
|
|
<!-- Settings for fault injection.
|
|
Approximate probability of request success:
|
|
(1 - send_fault_probability) * (1 - recv_fault_probability) = 0.99998 * 0.99998 = 0.99996
|
|
Actually it will be less, because if some request fails due to fault injection,
|
|
then all requests which are in the queue now also fail.
|
|
In other words, session will expire 4 times per 99996 successful requests
|
|
or approximately each 25000 requests (on average).
|
|
-->
|
|
<send_fault_probability>0.00002</send_fault_probability>
|
|
<recv_fault_probability>0.00002</recv_fault_probability>
|
|
</zookeeper>
|
|
</clickhouse>
|