2020-07-14 14:47:23 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-15 09:23:50 +00:00
|
|
|
set -x
|
|
|
|
|
2020-07-14 14:47:23 +00:00
|
|
|
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()
|
|
|
|
{
|
|
|
|
timeout 120 service clickhouse-server stop
|
|
|
|
|
|
|
|
# Wait for process to disappear from processlist and also try to kill zombies.
|
2020-09-30 17:06:14 +00:00
|
|
|
while kill -9 "$(pidof clickhouse-server)"
|
2020-08-24 00:14:24 +00:00
|
|
|
do
|
|
|
|
echo "Killed clickhouse-server"
|
|
|
|
sleep 0.5
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function start()
|
2020-07-14 14:47:23 +00:00
|
|
|
{
|
|
|
|
counter=0
|
|
|
|
until clickhouse-client --query "SELECT 1"
|
|
|
|
do
|
|
|
|
if [ "$counter" -gt 120 ]
|
|
|
|
then
|
2020-08-18 09:43:02 +00:00
|
|
|
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
|
2020-07-14 14:47:23 +00:00
|
|
|
break
|
|
|
|
fi
|
2020-08-24 00:14:24 +00:00
|
|
|
timeout 120 service clickhouse-server start
|
2020-07-14 14:47:23 +00:00
|
|
|
sleep 0.5
|
2020-09-30 17:06:14 +00:00
|
|
|
counter=$((counter + 1))
|
2020-07-14 14:47:23 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-09-24 08:18:36 +00:00
|
|
|
# install test configs
|
|
|
|
/usr/share/clickhouse-test/config/install.sh
|
2020-07-14 14:47:23 +00:00
|
|
|
|
2020-09-20 22:07:56 +00:00
|
|
|
# for clickhouse-server (via service)
|
2020-07-14 14:47:23 +00:00
|
|
|
echo "ASAN_OPTIONS='malloc_context_size=10 verbosity=1 allocator_release_to_os_interval_ms=10000'" >> /etc/environment
|
2020-09-20 22:07:56 +00:00
|
|
|
# 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-07-14 14:47:23 +00:00
|
|
|
|
2020-08-23 21:13:21 +00:00
|
|
|
start
|
2020-07-14 14:47:23 +00:00
|
|
|
|
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
|
2020-07-14 14:47:23 +00:00
|
|
|
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
|
2020-07-14 14:47:23 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
./stress --output-folder test_output --skip-func-tests "$SKIP_TESTS_OPTION"
|
|
|
|
|
2020-08-23 21:13:21 +00:00
|
|
|
stop
|
|
|
|
start
|
2020-07-14 14:47:23 +00:00
|
|
|
|
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
|