2020-06-15 13:37:40 +00:00
#!/usr/bin/env bash
CURDIR = $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd )
2020-12-28 11:46:53 +00:00
# shellcheck source=../shell_config.sh
2020-08-01 00:51:12 +00:00
. " $CURDIR " /../shell_config.sh
2020-06-15 13:37:40 +00:00
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS mutation_table"
$CLICKHOUSE_CLIENT --query "
CREATE TABLE mutation_table(
key UInt64,
value String
)
2021-03-15 04:51:28 +00:00
ENGINE = ReplicatedMergeTree( '/clickhouse/tables/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/mutation_table' , '1' )
2020-06-15 13:37:40 +00:00
ORDER BY key
PARTITION BY key % 10
"
$CLICKHOUSE_CLIENT --query "INSERT INTO mutation_table select number, toString(number) from numbers(100000) where number % 10 != 0"
$CLICKHOUSE_CLIENT --query "INSERT INTO mutation_table VALUES(0, 'hello')"
$CLICKHOUSE_CLIENT --query "SELECT COUNT() FROM mutation_table"
$CLICKHOUSE_CLIENT --query "ALTER TABLE mutation_table MODIFY COLUMN value UInt64 SETTINGS replication_alter_partitions_sync=0"
first_mutation_id = $( $CLICKHOUSE_CLIENT --query " SELECT mutation_id FROM system.mutations where table='mutation_table' and database=' $CLICKHOUSE_DATABASE ' " )
# Here we have long sleeps, but they shouldn't lead to flaps. We just check that
# background mutation finalization function will be triggered at least once. In
# rare cases this test doesn't check anything, but will report OK.
sleep 7
$CLICKHOUSE_CLIENT --query "ALTER TABLE mutation_table MODIFY COLUMN value UInt32 SETTINGS replication_alter_partitions_sync=0"
#### just check that both mutations started
check_query = " SELECT count() FROM system.mutations WHERE table='mutation_table' and database=' $CLICKHOUSE_DATABASE ' "
2020-08-01 01:20:22 +00:00
query_result = $( $CLICKHOUSE_CLIENT --query= " $check_query " 2>& 1)
2020-06-15 13:37:40 +00:00
while [ " $query_result " != "2" ]
do
2020-08-01 01:20:22 +00:00
query_result = $( $CLICKHOUSE_CLIENT --query= " $check_query " 2>& 1)
2020-06-15 13:37:40 +00:00
sleep 0.5
done
2020-08-01 00:56:32 +00:00
echo " $query_result "
2020-06-15 13:37:40 +00:00
2021-04-05 16:31:49 +00:00
$CLICKHOUSE_CLIENT --query " KILL MUTATION WHERE mutation_id=' $first_mutation_id ' and database=' $CLICKHOUSE_DATABASE ' "
2020-06-15 13:37:40 +00:00
2020-07-16 13:20:38 +00:00
check_query = " SELECT sum(parts_to_do) FROM system.mutations WHERE table='mutation_table' and database=' $CLICKHOUSE_DATABASE ' "
2020-08-01 01:20:22 +00:00
query_result = $( $CLICKHOUSE_CLIENT --query= " $check_query " 2>& 1)
2020-07-16 13:20:38 +00:00
counter = 0
while [ " $query_result " != "1" ]
do
if [ " $counter " -gt 120 ]
then
break
fi
2020-08-01 01:20:22 +00:00
query_result = $( $CLICKHOUSE_CLIENT --query= " $check_query " 2>& 1)
2020-07-16 13:20:38 +00:00
sleep 0.5
counter = $(( $counter + 1 ))
done
2020-06-15 13:37:40 +00:00
$CLICKHOUSE_CLIENT --query " SELECT is_done, parts_to_do FROM system.mutations where table='mutation_table' and database=' $CLICKHOUSE_DATABASE ' FORMAT TSVWithNames "
$CLICKHOUSE_CLIENT --query " SELECT type, new_part_name FROM system.replication_queue WHERE table='mutation_table' and database=' $CLICKHOUSE_DATABASE ' "
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS mutation_table"