2020-03-04 20:31:12 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
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
|
2020-03-04 20:31:12 +00:00
|
|
|
|
|
|
|
opts=(
|
2020-08-27 23:39:20 +00:00
|
|
|
--max_distributed_connections 9
|
2020-03-04 20:31:12 +00:00
|
|
|
--max_threads 1
|
2020-08-27 23:39:20 +00:00
|
|
|
--query "SELECT sleepEachRow(1) FROM remote('127.{2..10}', system.one)"
|
2020-03-04 20:31:12 +00:00
|
|
|
)
|
2020-08-27 23:39:20 +00:00
|
|
|
# 5 less then 9 seconds (9 streams), but long enough to cover possible load peaks
|
2020-03-04 20:31:12 +00:00
|
|
|
# "$@" left to pass manual options (like --experimental_use_processors 0) during manual testing
|
2020-08-27 23:39:20 +00:00
|
|
|
timeout 5s ${CLICKHOUSE_CLIENT} "${opts[@]}" "$@"
|