mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Fix flaky 02915_move_partition_inactive_replica
This commit is contained in:
parent
715a18dc40
commit
31a37c7736
@ -10,11 +10,11 @@ drop table if exists shard_1.from_1;
|
||||
drop table if exists shard_0.to;
|
||||
drop table if exists shard_1.to;
|
||||
|
||||
create table shard_0.from_0 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_0_' || currentDatabase(), '0') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1;
|
||||
create table shard_1.from_0 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_0_' || currentDatabase(), '1') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1;
|
||||
create table shard_0.from_0 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_0_' || currentDatabase(), '0') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1, min_bytes_for_wide_part=0, min_bytes_for_full_part_storage=0, ratio_of_defaults_for_sparse_serialization=0, vertical_merge_algorithm_min_rows_to_activate=612278, vertical_merge_algorithm_min_columns_to_activate=1, allow_vertical_merges_from_compact_to_wide_parts=1;
|
||||
create table shard_1.from_0 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_0_' || currentDatabase(), '1') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1, min_bytes_for_wide_part=0, min_bytes_for_full_part_storage=0, ratio_of_defaults_for_sparse_serialization=0, vertical_merge_algorithm_min_rows_to_activate=612278, vertical_merge_algorithm_min_columns_to_activate=1, allow_vertical_merges_from_compact_to_wide_parts=1;
|
||||
|
||||
create table shard_0.from_1 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_1_' || currentDatabase(), '0') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1;
|
||||
create table shard_1.from_1 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_1_' || currentDatabase(), '1') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1;
|
||||
create table shard_0.from_1 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_1_' || currentDatabase(), '0') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1, min_bytes_for_wide_part=0, min_bytes_for_full_part_storage=0, ratio_of_defaults_for_sparse_serialization=0, vertical_merge_algorithm_min_rows_to_activate=612278, vertical_merge_algorithm_min_columns_to_activate=1, allow_vertical_merges_from_compact_to_wide_parts=1;
|
||||
create table shard_1.from_1 (x UInt32) engine = ReplicatedMergeTree('/clickhouse/tables/from_1_' || currentDatabase(), '1') order by x settings old_parts_lifetime=1, max_cleanup_delay_period=1, cleanup_delay_period=1, min_bytes_for_wide_part=0, min_bytes_for_full_part_storage=0, ratio_of_defaults_for_sparse_serialization=0, vertical_merge_algorithm_min_rows_to_activate=612278, vertical_merge_algorithm_min_columns_to_activate=1, allow_vertical_merges_from_compact_to_wide_parts=1;
|
||||
|
||||
insert into shard_0.from_0 select number from numbers(10);
|
||||
insert into shard_0.from_0 select number + 10 from numbers(10);
|
||||
@ -40,10 +40,17 @@ OPTIMIZE TABLE shard_0.from_0;
|
||||
OPTIMIZE TABLE shard_1.from_0;
|
||||
OPTIMIZE TABLE shard_0.from_1;
|
||||
OPTIMIZE TABLE shard_1.from_1;
|
||||
|
||||
OPTIMIZE TABLE shard_0.to;
|
||||
|
||||
-- If moved parts are not merged by OPTIMIZE or background merge restart
|
||||
-- can log Warning about metadata version on disk. It's normal situation
|
||||
-- and test shouldn't rarely fail because of it.
|
||||
set send_logs_level = 'Error';
|
||||
|
||||
system restart replica shard_0.to;
|
||||
|
||||
-- Doesn't lead to test flakyness, because we don't check anything after it
|
||||
select sleep(2);
|
||||
|
||||
attach table shard_1.to;
|
||||
@ -54,4 +61,3 @@ drop table if exists shard_0.from_1;
|
||||
drop table if exists shard_1.from_1;
|
||||
drop table if exists shard_0.to;
|
||||
drop table if exists shard_1.to;
|
||||
|
||||
|
@ -35,8 +35,15 @@ OPTIMIZE TABLE shard_0.to;
|
||||
OPTIMIZE TABLE shard_0.to;
|
||||
select name, active from system.parts where database='shard_0' and table='to' and active order by name;
|
||||
|
||||
-- If moved parts are not merged by OPTIMIZE or background merge restart
|
||||
-- can log Warning about metadata version on disk. It's normal situation
|
||||
-- and test shouldn't rarely fail because of it.
|
||||
set send_logs_level = 'Error';
|
||||
|
||||
system restart replica shard_0.to;
|
||||
|
||||
-- Doesn't lead to test flakyness, because we don't check content in table
|
||||
-- which doesn't depend on any background operation
|
||||
select sleep(3);
|
||||
|
||||
attach table shard_1.to;
|
Loading…
Reference in New Issue
Block a user