ClickHouse/docker/test/stress/run.sh

67 lines
2.2 KiB
Bash
Raw Normal View History

#!/bin/bash
2020-07-15 09:23:50 +00:00
set -x
dpkg -i package_folder/clickhouse-common-static_*.deb
dpkg -i package_folder/clickhouse-common-static-dbg_*.deb
dpkg -i package_folder/clickhouse-server_*.deb
dpkg -i package_folder/clickhouse-client_*.deb
dpkg -i package_folder/clickhouse-test_*.deb
2020-08-24 00:14:24 +00:00
function stop()
{
clickhouse stop
2020-08-24 00:14:24 +00:00
}
function start()
{
counter=0
until clickhouse-client --query "SELECT 1"
do
if [ "$counter" -gt 120 ]
then
echo "Cannot start clickhouse-server"
cat /var/log/clickhouse-server/stdout.log
2020-08-23 20:48:27 +00:00
tail -n1000 /var/log/clickhouse-server/stderr.log
2020-08-23 21:13:21 +00:00
tail -n1000 /var/log/clickhouse-server/clickhouse-server.log
break
fi
# use root to match with current uid
clickhouse start --user root >/var/log/clickhouse-server/stdout.log 2>/var/log/clickhouse-server/stderr.log
sleep 0.5
2020-09-30 17:06:14 +00:00
counter=$((counter + 1))
done
}
2020-09-24 08:18:36 +00:00
# install test configs
/usr/share/clickhouse-test/config/install.sh
# for clickhouse-server (via service)
echo "ASAN_OPTIONS='malloc_context_size=10 verbosity=1 allocator_release_to_os_interval_ms=10000'" >> /etc/environment
# for clickhouse-client
2020-10-16 17:31:05 +00:00
export ASAN_OPTIONS='malloc_context_size=10 allocator_release_to_os_interval_ms=10000'
2020-08-23 21:13:21 +00:00
start
2020-10-01 09:27:05 +00:00
# shellcheck disable=SC2086 # No quotes because I want to split it into words.
/s3downloader --dataset-names $DATASETS
chmod 777 -R /var/lib/clickhouse
clickhouse-client --query "ATTACH DATABASE IF NOT EXISTS datasets ENGINE = Ordinary"
clickhouse-client --query "CREATE DATABASE IF NOT EXISTS test"
2020-08-04 08:48:47 +00:00
2020-08-23 21:13:21 +00:00
stop
start
clickhouse-client --query "SHOW TABLES FROM datasets"
clickhouse-client --query "SHOW TABLES FROM test"
clickhouse-client --query "RENAME TABLE datasets.hits_v1 TO test.hits"
clickhouse-client --query "RENAME TABLE datasets.visits_v1 TO test.visits"
clickhouse-client --query "SHOW TABLES FROM test"
2021-02-17 09:01:41 +00:00
./stress --hung-check --output-folder test_output --skip-func-tests "$SKIP_TESTS_OPTION" && echo "OK" > /test_output/script_exit_code.txt || echo "FAIL" > /test_output/script_exit_code.txt
2020-08-23 21:13:21 +00:00
stop
start
2020-07-14 15:00:24 +00:00
clickhouse-client --query "SELECT 'Server successfuly started'" > /test_output/alive_check.txt || echo 'Server failed to start' > /test_output/alive_check.txt