This commit is contained in:
Igor Nikonov 2024-11-14 09:32:28 +00:00
parent d6b3f94a35
commit 17327a242d

View File

@ -821,10 +821,9 @@ class SettingsRandomizer:
"optimize_aggregation_in_order": lambda: random.randint(0, 1),
"aggregation_in_order_max_block_bytes": lambda: random.randint(0, 50000000),
"use_uncompressed_cache": lambda: random.randint(0, 1),
# see https://github.com/ClickHouse/ClickHouse/issues/65690
# "min_bytes_to_use_direct_io": threshold_generator(
# 0.2, 0.5, 1, 10 * 1024 * 1024 * 1024
# ),
"min_bytes_to_use_direct_io": threshold_generator(
0.2, 0.5, 1, 10 * 1024 * 1024 * 1024
),
"min_bytes_to_use_mmap_io": threshold_generator(
0.2, 0.5, 1, 10 * 1024 * 1024 * 1024
),