2021-09-09 17:17:19 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-03-05 16:17:08 +00:00
|
|
|
# Tags: no-random-settings
|
|
|
|
|
2021-09-09 17:17:19 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
|
|
# shellcheck source=../shell_config.sh
|
|
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
|
2022-03-05 16:17:08 +00:00
|
|
|
|
2021-09-09 17:17:19 +00:00
|
|
|
function insert1()
|
|
|
|
{
|
2021-09-16 17:18:34 +00:00
|
|
|
url="${CLICKHOUSE_URL}&async_insert=1&wait_for_async_insert=0"
|
2021-09-09 17:17:19 +00:00
|
|
|
while true; do
|
|
|
|
${CLICKHOUSE_CURL} -sS "$url" -d 'INSERT INTO async_inserts FORMAT CSV
|
|
|
|
1,"a"
|
|
|
|
2,"b"
|
|
|
|
'
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function insert2()
|
|
|
|
{
|
2021-09-16 17:18:34 +00:00
|
|
|
url="${CLICKHOUSE_URL}&async_insert=1&wait_for_async_insert=0"
|
2021-09-09 17:17:19 +00:00
|
|
|
while true; do
|
|
|
|
${CLICKHOUSE_CURL} -sS "$url" -d 'INSERT INTO async_inserts FORMAT JSONEachRow {"id": 5, "s": "e"} {"id": 6, "s": "f"}'
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2022-03-04 11:46:15 +00:00
|
|
|
function insert3()
|
|
|
|
{
|
|
|
|
url="${CLICKHOUSE_URL}&async_insert=1&wait_for_async_insert=0"
|
|
|
|
while true; do
|
|
|
|
${CLICKHOUSE_CURL} -sS "$url" -d "INSERT INTO FUNCTION remote('127.0.0.1', $CLICKHOUSE_DATABASE, async_inserts) VALUES (7, 'g') (8, 'h')"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2021-09-09 17:17:19 +00:00
|
|
|
function select1()
|
|
|
|
{
|
2022-02-26 19:09:34 +00:00
|
|
|
${CLICKHOUSE_CLIENT} -q "SELECT * FROM async_inserts FORMAT Null"
|
2021-09-09 17:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function select2()
|
|
|
|
{
|
2022-02-26 19:09:34 +00:00
|
|
|
${CLICKHOUSE_CLIENT} -q "SELECT * FROM system.asynchronous_inserts FORMAT Null"
|
2021-09-09 17:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function truncate1()
|
|
|
|
{
|
2022-02-26 19:09:34 +00:00
|
|
|
sleep 0.1
|
|
|
|
${CLICKHOUSE_CLIENT} -q "TRUNCATE TABLE async_inserts"
|
2021-09-09 17:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
${CLICKHOUSE_CLIENT} -q "DROP TABLE IF EXISTS async_inserts"
|
|
|
|
${CLICKHOUSE_CLIENT} -q "CREATE TABLE async_inserts (id UInt32, s String) ENGINE = MergeTree ORDER BY id"
|
|
|
|
|
|
|
|
TIMEOUT=10
|
|
|
|
|
|
|
|
export -f insert1
|
|
|
|
export -f insert2
|
2022-03-04 11:46:15 +00:00
|
|
|
export -f insert3
|
2021-09-09 17:17:19 +00:00
|
|
|
export -f select1
|
|
|
|
export -f select2
|
2021-09-27 16:39:32 +00:00
|
|
|
export -f truncate1
|
2021-09-09 17:17:19 +00:00
|
|
|
|
|
|
|
for _ in {1..5}; do
|
|
|
|
timeout $TIMEOUT bash -c insert1 &
|
|
|
|
timeout $TIMEOUT bash -c insert2 &
|
2022-03-04 11:46:15 +00:00
|
|
|
timeout $TIMEOUT bash -c insert3 &
|
2021-09-09 17:17:19 +00:00
|
|
|
done
|
|
|
|
|
2022-02-26 19:09:34 +00:00
|
|
|
clickhouse_client_loop_timeout $TIMEOUT select1 &
|
|
|
|
clickhouse_client_loop_timeout $TIMEOUT select2 &
|
|
|
|
clickhouse_client_loop_timeout $TIMEOUT truncate1 &
|
2021-09-09 17:17:19 +00:00
|
|
|
|
|
|
|
wait
|
|
|
|
echo "OK"
|
|
|
|
|
|
|
|
${CLICKHOUSE_CLIENT} -q "DROP TABLE IF EXISTS async_inserts";
|