From 0daf4065eb254d9f8dc5dc511386c7074408a390 Mon Sep 17 00:00:00 2001 From: Nikita Taranov Date: Wed, 15 May 2024 19:28:05 +0100 Subject: [PATCH] fix --- tests/ci/stress.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/ci/stress.py b/tests/ci/stress.py index 86cbe503796..8b8b17dd2a9 100755 --- a/tests/ci/stress.py +++ b/tests/ci/stress.py @@ -77,6 +77,9 @@ def get_options(i: int, upgrade_check: bool) -> str: if random.random() < 0.2: client_options.append("allow_experimental_parallel_reading_from_replicas=1") + client_options.append("max_parallel_replicas=3") + client_options.append("cluster_for_parallel_replicas='parallel_replicas'") + client_options.append("parallel_replicas_for_non_replicated_merge_tree=1") if client_options: options.append(" --client-option " + " ".join(client_options))