mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Do not randomize min_bytes_to_use_direct_io
This commit is contained in:
parent
1561a0115f
commit
37c2483869
@ -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
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user