ClickHouse/tests/queries/0_stateless/00834_kill_mutation.sh

71 lines
2.6 KiB
Bash
Raw Normal View History

2019-02-05 18:07:00 +00:00
#!/usr/bin/env bash
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
. $CURDIR/../shell_config.sh
. $CURDIR/mergetree_mutations.lib
${CLICKHOUSE_CLIENT} --query="DROP TABLE IF EXISTS test.kill_mutation"
2019-02-05 18:07:00 +00:00
${CLICKHOUSE_CLIENT} --query="CREATE TABLE test.kill_mutation(d Date, x UInt32, s String) ENGINE MergeTree ORDER BY x PARTITION BY d"
2019-02-05 18:07:00 +00:00
${CLICKHOUSE_CLIENT} --query="INSERT INTO test.kill_mutation VALUES ('2000-01-01', 1, 'a')"
${CLICKHOUSE_CLIENT} --query="INSERT INTO test.kill_mutation VALUES ('2001-01-01', 2, 'b')"
2019-02-05 18:07:00 +00:00
${CLICKHOUSE_CLIENT} --query="SELECT '*** Create and kill a single invalid mutation ***'"
2019-12-19 15:27:56 +00:00
${CLICKHOUSE_CLIENT} --query="ALTER TABLE test.kill_mutation DELETE WHERE toUInt32(s) = 1 SETTINGS mutations_sync = 1" &
2019-02-05 18:07:00 +00:00
2019-12-24 09:05:06 +00:00
2020-03-16 11:54:07 +00:00
check_query1="SELECT count() FROM system.mutations WHERE database = 'test' AND table = 'kill_mutation' AND is_done = 0"
2019-12-24 09:05:06 +00:00
query_result=`$CLICKHOUSE_CLIENT --query="$check_query1" 2>&1`
2020-03-16 11:54:07 +00:00
while [ "$query_result" == "0" ]
2019-12-24 09:05:06 +00:00
do
query_result=`$CLICKHOUSE_CLIENT --query="$check_query1" 2>&1`
2020-03-16 11:54:07 +00:00
sleep 0.5
2019-12-24 09:05:06 +00:00
done
2020-03-16 11:54:07 +00:00
${CLICKHOUSE_CLIENT} --query="SELECT count() FROM system.mutations WHERE database = 'test' AND table = 'kill_mutation' and is_done = 0"
2019-02-05 18:07:00 +00:00
kill_message=$(${CLICKHOUSE_CLIENT} --query="KILL MUTATION WHERE database = 'test' AND table = 'kill_mutation'")
2019-02-05 18:07:00 +00:00
2019-12-19 15:27:56 +00:00
wait
echo "$kill_message"
${CLICKHOUSE_CLIENT} --query="SELECT mutation_id FROM system.mutations WHERE database = 'test' AND table = 'kill_mutation'"
2019-02-05 18:07:00 +00:00
${CLICKHOUSE_CLIENT} --query="SELECT '*** Create and kill invalid mutation that blocks another mutation ***'"
${CLICKHOUSE_CLIENT} --query="ALTER TABLE test.kill_mutation DELETE WHERE toUInt32(s) = 1"
2019-12-19 15:27:56 +00:00
${CLICKHOUSE_CLIENT} --query="ALTER TABLE test.kill_mutation DELETE WHERE x = 1 SETTINGS mutations_sync = 1" &
2019-02-05 18:07:00 +00:00
2020-03-16 11:54:07 +00:00
check_query2="SELECT count() FROM system.mutations WHERE database = 'test' AND table = 'kill_mutation' AND mutation_id = 'mutation_4.txt'"
2019-12-24 09:05:06 +00:00
query_result=`$CLICKHOUSE_CLIENT --query="$check_query1" 2>&1`
2020-03-16 11:54:07 +00:00
while [ "$query_result" == "0" ]
2019-12-24 09:05:06 +00:00
do
query_result=`$CLICKHOUSE_CLIENT --query="$check_query1" 2>&1`
2020-03-16 11:54:07 +00:00
sleep 0.5
2019-12-24 09:05:06 +00:00
done
2020-03-16 11:54:07 +00:00
${CLICKHOUSE_CLIENT} --query="SELECT count() FROM system.mutations WHERE database = 'test' AND table = 'kill_mutation' AND mutation_id = 'mutation_4.txt'"
2019-02-05 18:07:00 +00:00
2019-12-24 09:05:06 +00:00
kill_message=$(${CLICKHOUSE_CLIENT} --query="KILL MUTATION WHERE database = 'test' AND table = 'kill_mutation' AND mutation_id = 'mutation_4.txt'")
2019-02-05 18:07:00 +00:00
2019-12-19 15:27:56 +00:00
wait
2019-02-05 18:07:00 +00:00
echo "$kill_message"
${CLICKHOUSE_CLIENT} --query="SELECT * FROM test.kill_mutation"
2020-03-11 15:00:14 +00:00
# must always be empty
2020-03-11 10:28:24 +00:00
${CLICKHOUSE_CLIENT} --query="SELECT * FROM system.mutations WHERE table = 'kill_mutation' AND database = 'test' AND is_done = 0"
2019-02-05 18:07:00 +00:00
${CLICKHOUSE_CLIENT} --query="DROP TABLE test.kill_mutation"