mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
58 lines
1.7 KiB
Bash
Executable File
58 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: long, no-tsan, no-debug, no-asan, no-msan, no-ubsan, no-shared-merge-tree
|
|
# no-shared-merge-tree -- this test is too slow
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
# "max_parts_to_merge_at_once = 1" prevents merges to start in background before our own OPTIMIZE FINAL
|
|
|
|
$CLICKHOUSE_CLIENT -q "
|
|
drop table if exists many_mutations;
|
|
create table many_mutations (x UInt32, y UInt32) engine = MergeTree order by x settings number_of_mutations_to_delay = 0, number_of_mutations_to_throw = 0, max_parts_to_merge_at_once = 1, lock_acquire_timeout_for_background_operations = 300;
|
|
insert into many_mutations values (0, 0), (1, 1);
|
|
system stop merges many_mutations;
|
|
select x, y from many_mutations order by x;
|
|
"
|
|
|
|
job()
|
|
{
|
|
yes "alter table many_mutations update y = y + 1 where 1;" | head -n 1000 | $CLICKHOUSE_CLIENT
|
|
}
|
|
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
job &
|
|
|
|
wait
|
|
|
|
# truncate before drop, avoid removing all the mutations (it's slow) in DatabaseCatalog's thread (may affect other tests)
|
|
$CLICKHOUSE_CLIENT -q "
|
|
select count() from system.mutations where database = currentDatabase() and table = 'many_mutations' and not is_done;
|
|
system start merges many_mutations;
|
|
optimize table many_mutations final SETTINGS optimize_throw_if_noop = 1;
|
|
alter table many_mutations update y = y + 1 where 1 settings mutations_sync=2;
|
|
select count() from system.mutations where database = currentDatabase() and table = 'many_mutations' and not is_done;
|
|
select x, y from many_mutations order by x;
|
|
truncate table many_mutations;
|
|
drop table many_mutations;
|
|
"
|