Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make test more stable #9608

Merged
merged 2 commits into from
Mar 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions dbms/tests/queries/0_stateless/01055_compact_parts_granularity.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env bash

CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
. $CURDIR/../shell_config.sh

$CLICKHOUSE_CLIENT -q "DROP TABLE IF EXISTS mt_compact"

# Checks that granularity correctly computed from small parts.

$CLICKHOUSE_CLIENT -q "CREATE TABLE mt_compact(a Int, s String) ENGINE = MergeTree ORDER BY a
SETTINGS min_rows_for_wide_part = 1000,
index_granularity = 14;"

$CLICKHOUSE_CLIENT -q "SYSTEM STOP MERGES mt_compact"

$CLICKHOUSE_CLIENT --max_block_size=1 --min_insert_block_size_rows=1 -q \
"INSERT INTO mt_compact SELECT number, 'aaa' FROM numbers(100);"

$CLICKHOUSE_CLIENT -q "SELECT count() FROM system.parts WHERE table = 'mt_compact' AND database = currentDatabase() AND active"
$CLICKHOUSE_CLIENT -q "SYSTEM START MERGES mt_compact"

# Retry because already started concurrent merges may interrupt optimize
for i in {0..10}; do
$CLICKHOUSE_CLIENT -q "OPTIMIZE TABLE mt_compact FINAL SETTINGS optimize_throw_if_noop=1" 2>/dev/null
if [ $? -eq 0 ]; then
break
fi
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe also add sleep 0.1 between retries?
Otherwise all retries can be done too quickly.

sleep 0.1
done

$CLICKHOUSE_CLIENT -q "SELECT count(), sum(marks) FROM system.parts WHERE table = 'mt_compact' AND database = currentDatabase() AND active"
$CLICKHOUSE_CLIENT -q "DROP TABLE mt_compact"
21 changes: 0 additions & 21 deletions dbms/tests/queries/0_stateless/01055_compact_parts_granularity.sql

This file was deleted.