Do not randomize min_bytes_to_use_direct_io

This commit is contained in:
Igor Nikonov 2024-11-08 17:09:23 +00:00
parent 1561a0115f
commit 37c2483869

View File

@ -821,9 +821,10 @@ 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),
"min_bytes_to_use_direct_io": threshold_generator(
0.2, 0.5, 1, 10 * 1024 * 1024 * 1024
),
# 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_mmap_io": threshold_generator(
0.2, 0.5, 1, 10 * 1024 * 1024 * 1024
),