From 07923cd7cd22c15f32b6b64f0d4b53b6e2f86cdb Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Fri, 28 Aug 2020 02:39:20 +0300 Subject: [PATCH] Fix 01085_max_distributed_connections flackiness 1.8 seconds is too small delay, which eventually can lead to false-positive if the machine will be slow enough. Increase number of remote streams and the delay, to avoid false-positive. --- .../01085_max_distributed_connections.reference | 7 +++++++ .../0_stateless/01085_max_distributed_connections.sh | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/tests/queries/0_stateless/01085_max_distributed_connections.reference b/tests/queries/0_stateless/01085_max_distributed_connections.reference index aa47d0d46d4..bc6ff2b709c 100644 --- a/tests/queries/0_stateless/01085_max_distributed_connections.reference +++ b/tests/queries/0_stateless/01085_max_distributed_connections.reference @@ -1,2 +1,9 @@ 0 0 +0 +0 +0 +0 +0 +0 +0 diff --git a/tests/queries/0_stateless/01085_max_distributed_connections.sh b/tests/queries/0_stateless/01085_max_distributed_connections.sh index c895b029bac..7b561604640 100755 --- a/tests/queries/0_stateless/01085_max_distributed_connections.sh +++ b/tests/queries/0_stateless/01085_max_distributed_connections.sh @@ -4,10 +4,10 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) . "$CURDIR"/../shell_config.sh opts=( - --max_distributed_connections 2 + --max_distributed_connections 9 --max_threads 1 - --query "SELECT sleepEachRow(1) FROM remote('127.{2,3}', system.one)" + --query "SELECT sleepEachRow(1) FROM remote('127.{2..10}', system.one)" ) -# 1.8 less then 2 seconds, but long enough to cover possible load peaks +# 5 less then 9 seconds (9 streams), but long enough to cover possible load peaks # "$@" left to pass manual options (like --experimental_use_processors 0) during manual testing -timeout 1.8s ${CLICKHOUSE_CLIENT} "${opts[@]}" "$@" +timeout 5s ${CLICKHOUSE_CLIENT} "${opts[@]}" "$@"