mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Test for max_distributed_connections (via TCP)
This commit is contained in:
parent
62b60a09a4
commit
391054039e
@ -0,0 +1,2 @@
|
||||
0
|
||||
0
|
13
dbms/tests/queries/0_stateless/01085_max_distributed_connections.sh
Executable file
13
dbms/tests/queries/0_stateless/01085_max_distributed_connections.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. $CURDIR/../shell_config.sh
|
||||
|
||||
opts=(
|
||||
--max_distributed_connections 2
|
||||
--max_threads 1
|
||||
--query "SELECT sleepEachRow(1) FROM remote('127.{2,3}', system.one)"
|
||||
)
|
||||
# 1.8 less then 2 seconds, 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[@]}" "$@"
|
Loading…
Reference in New Issue
Block a user