ClickHouse/tests/queries/0_stateless/01085_max_distributed_connections.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
851 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-11-21 14:18:02 +00:00
# Tags: distributed, no-random-settings
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
2020-12-28 11:46:53 +00:00
# shellcheck source=../shell_config.sh
2020-08-01 00:51:12 +00:00
. "$CURDIR"/../shell_config.sh
2021-10-11 13:40:12 +00:00
i=0 retries=300
# Sometimes five seconds are not enough due to system overload.
# But if it can run in less than five seconds at least sometimes - it is enough for the test.
2021-10-11 13:40:12 +00:00
while [[ $i -lt $retries ]]; do
opts=(
--max_distributed_connections 20
--max_threads 1
2022-11-21 14:18:02 +00:00
--query "SELECT sum(sleepEachRow(1)) FROM remote('127.{2..21}', system.one)"
2021-05-25 17:22:32 +00:00
--format Null
)
# 10 less then 20 seconds (20 streams), but long enough to cover possible load peaks
# "$@" left to pass manual options (like --experimental_use_processors 0) during manual testing
timeout 10s ${CLICKHOUSE_CLIENT} "${opts[@]}" "$@" && break
2021-10-11 13:40:12 +00:00
((++i))
done