mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
07923cd7cd
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.
14 lines
475 B
Bash
Executable File
14 lines
475 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
opts=(
|
|
--max_distributed_connections 9
|
|
--max_threads 1
|
|
--query "SELECT sleepEachRow(1) FROM remote('127.{2..10}', system.one)"
|
|
)
|
|
# 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 5s ${CLICKHOUSE_CLIENT} "${opts[@]}" "$@"
|