Fix tests

This commit is contained in:
Alexey Milovidov 2024-06-17 05:37:08 +02:00
parent 204b27d0f0
commit 279716519d
4 changed files with 10 additions and 5 deletions

View File

@ -0,0 +1,3 @@
<clickhouse>
<async_load_databases>false</async_load_databases>
</clickhouse>

View File

@ -11,13 +11,13 @@ def cluster():
cluster = ClickHouseCluster(__file__)
cluster.add_instance(
"node1",
main_configs=["configs/storage_conf.xml"],
main_configs=["configs/storage_conf.xml", "configs/no_async_load.xml"],
with_nginx=True,
use_old_analyzer=True,
)
cluster.add_instance(
"node2",
main_configs=["configs/storage_conf_web.xml"],
main_configs=["configs/storage_conf_web.xml", "configs/no_async_load.xml"],
with_nginx=True,
stay_alive=True,
with_zookeeper=True,
@ -25,7 +25,7 @@ def cluster():
)
cluster.add_instance(
"node3",
main_configs=["configs/storage_conf_web.xml"],
main_configs=["configs/storage_conf_web.xml", "configs/no_async_load.xml"],
with_nginx=True,
with_zookeeper=True,
use_old_analyzer=True,
@ -33,7 +33,7 @@ def cluster():
cluster.add_instance(
"node4",
main_configs=["configs/storage_conf.xml"],
main_configs=["configs/storage_conf.xml", "configs/no_async_load.xml"],
with_nginx=True,
stay_alive=True,
with_installed_binary=True,
@ -42,7 +42,7 @@ def cluster():
)
cluster.add_instance(
"node5",
main_configs=["configs/storage_conf.xml"],
main_configs=["configs/storage_conf.xml", "configs/no_async_load.xml"],
with_nginx=True,
use_old_analyzer=True,
)

View File

@ -6,4 +6,5 @@
</merge_tree>
<max_database_replicated_create_table_thread_pool_size>50</max_database_replicated_create_table_thread_pool_size>
<allow_experimental_transactions>42</allow_experimental_transactions>
<async_load_databases>false</async_load_databases>
</clickhouse>

View File

@ -7,4 +7,5 @@
<max_database_replicated_create_table_thread_pool_size>50</max_database_replicated_create_table_thread_pool_size>
<allow_experimental_transactions>42</allow_experimental_transactions>
<replica_group_name>group</replica_group_name>
<async_load_databases>false</async_load_databases>
</clickhouse>