impl

impl
This commit is contained in:
Nikita Taranov 2024-05-15 18:48:29 +01:00
parent bf38e8b3eb
commit 5102c6eff0

View File

@ -75,6 +75,9 @@ def get_options(i: int, upgrade_check: bool) -> str:
if not upgrade_check:
client_options.append("ignore_drop_queries_probability=0.5")
if random.random() < 0.2:
client_options.append("allow_experimental_parallel_reading_from_replicas=1")
if client_options:
options.append(" --client-option " + " ".join(client_options))