mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 22:12:21 +00:00
7b5ed949a1
v2: wait for queries in 01085_max_distributed_connections_http CI: https://s3.amazonaws.com/clickhouse-test-reports/35865/e330d691a3a1981582ebbe20e3ecc15247644f19/stateless_tests__debug__actions__[2/3].html v3: wait left queries in 01675_data_type_coroutine* CI: https://s3.amazonaws.com/clickhouse-test-reports/36400/828d23c933681ecfc19a09a78947918c545e5558/stateless_tests__debug__actions__[2/3].html Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
20 lines
719 B
Bash
Executable File
20 lines
719 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: distributed, no-parallel
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
# Sometimes 1.8 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.
|
|
|
|
i=0 retries=100
|
|
while [[ $i -lt $retries ]]; do
|
|
query="SELECT sleepEachRow(1) FROM remote('127.{2,3}', system.one) FORMAT Null"
|
|
# 1.8 less then 2 seconds, but long enough to cover possible load peaks
|
|
timeout 1.8s ${CLICKHOUSE_CURL} -sS "${CLICKHOUSE_URL}&max_distributed_connections=2&max_threads=1" -d "$query" && break
|
|
((++i))
|
|
done
|
|
|
|
clickhouse_test_wait_queries 60
|