ClickHouse/tests/queries/0_stateless/02294_overcommit_overflow.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
823 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# Tags: no-parallel, no-fasttest
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
$CLICKHOUSE_CLIENT -q 'DROP USER IF EXISTS u02294'
$CLICKHOUSE_CLIENT -q 'CREATE USER IF NOT EXISTS u02294 IDENTIFIED WITH no_password'
$CLICKHOUSE_CLIENT -q 'GRANT ALL ON *.* TO u02294'
function query()
{
2022-05-28 18:44:58 +00:00
while true; do
$CLICKHOUSE_CLIENT -u u02294 -q 'SELECT number FROM numbers(130000) GROUP BY number SETTINGS max_memory_usage_for_user=5000000,memory_overcommit_ratio_denominator=2000000000000000000,memory_usage_overcommit_max_wait_microseconds=500' >/dev/null 2>/dev/null
2022-05-28 18:44:58 +00:00
done
}
export -f query
2022-05-28 18:44:58 +00:00
TIMEOUT=10
2022-05-13 16:27:52 +00:00
for _ in {1..10};
do
2022-05-28 18:44:58 +00:00
timeout $TIMEOUT bash -c query &
2022-05-13 16:27:52 +00:00
done
2022-05-13 16:27:52 +00:00
wait
$CLICKHOUSE_CLIENT -q 'DROP USER IF EXISTS u02294'