Skip to content

Commit

Permalink
Merge pull request #61110 from ClickHouse/tavplubix-patch-10
Browse files Browse the repository at this point in the history
Update 02962_system_sync_replica_lightweight_from_modifier.sh
  • Loading branch information
tavplubix committed Mar 21, 2024
2 parents 2be2ca4 + e612e7e commit 9a389d7
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -14,7 +14,7 @@ export REPLICAS_TO_DROP

for i in $(seq $TOTAL_REPLICAS); do
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS test_table_$i"
$CLICKHOUSE_CLIENT --query "CREATE TABLE test_table_$i (key UInt64, value UInt8) ENGINE = ReplicatedMergeTree('/clickhouse/tables/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/test_table', '$i') ORDER BY key"
$CLICKHOUSE_CLIENT --query "CREATE TABLE test_table_$i (key UInt64, value UInt8) ENGINE = ReplicatedMergeTree('/clickhouse/tables/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/test_table', '$i') ORDER BY key SETTINGS old_parts_lifetime=1"
done

function insert_thread() {
Expand All @@ -35,7 +35,7 @@ function sync_and_drop_replicas() {
done

for i in $(seq $REPLICAS_TO_DROP); do
$CLICKHOUSE_CLIENT --query "CREATE TABLE test_table_$i (key UInt64, value UInt8) ENGINE = ReplicatedMergeTree('/clickhouse/tables/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/test_table', '$i') ORDER BY key"
$CLICKHOUSE_CLIENT --query "CREATE TABLE test_table_$i (key UInt64, value UInt8) ENGINE = ReplicatedMergeTree('/clickhouse/tables/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/test_table', '$i') ORDER BY key SETTINGS old_parts_lifetime=1"
done
done
}
Expand Down Expand Up @@ -87,4 +87,4 @@ for i in $(seq $TOTAL_REPLICAS); do
if [ $i -gt $REPLICAS_TO_DROP ]; then
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS test_table_$i"
fi
done
done

0 comments on commit 9a389d7

Please sign in to comment.