mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
more logs
This commit is contained in:
parent
bc5a689899
commit
7e904ac789
@ -451,7 +451,7 @@ void ZooKeeper::connect(
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG_TEST(log, "Connected to ZooKeeper at {} with session_id {}", socket.peerAddress().toString(), session_id);
|
||||
LOG_TEST(log, "Connected to ZooKeeper at {} with session_id {}{}", socket.peerAddress().toString(), session_id, fail_reasons.str());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,6 +11,7 @@ node2 = cluster.add_instance('nod2', with_zookeeper=True,
|
||||
node3 = cluster.add_instance('nod3', with_zookeeper=True,
|
||||
main_configs=["configs/zookeeper_load_balancing.xml"])
|
||||
|
||||
|
||||
def change_balancing(old, new, reload=True):
|
||||
line = '<zookeeper_load_balancing>{}<'
|
||||
old_line = line.format(old)
|
||||
@ -18,6 +19,7 @@ def change_balancing(old, new, reload=True):
|
||||
for node in [node1, node2, node3]:
|
||||
node.replace_in_config('/etc/clickhouse-server/config.d/zookeeper_load_balancing.xml', old_line, new_line)
|
||||
if reload:
|
||||
node.query("select '{}', '{}'".format(old, new))
|
||||
node.query('system reload config')
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user