mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
67 lines
2.3 KiB
Bash
Executable File
67 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
|
|
$CLICKHOUSE_CLIENT --query="DROP TABLE IF EXISTS elog;"
|
|
|
|
$CLICKHOUSE_CLIENT --query="
|
|
CREATE TABLE elog (
|
|
date Date,
|
|
engine_id UInt32,
|
|
referrer String
|
|
)
|
|
ENGINE = ReplicatedMergeTree('/clickhouse/tables/test_00953/elog', 'test')
|
|
PARTITION BY date
|
|
ORDER BY (engine_id)
|
|
SETTINGS replicated_deduplication_window = 2, cleanup_delay_period=4, cleanup_delay_period_random_add=0;"
|
|
|
|
$CLICKHOUSE_CLIENT --query="INSERT INTO elog VALUES (toDate('2018-10-01'), 1, 'hello')"
|
|
sleep 1
|
|
$CLICKHOUSE_CLIENT --query="INSERT INTO elog VALUES (toDate('2018-10-01'), 2, 'hello')"
|
|
sleep 1
|
|
$CLICKHOUSE_CLIENT --query="INSERT INTO elog VALUES (toDate('2018-10-01'), 3, 'hello')"
|
|
|
|
$CLICKHOUSE_CLIENT --query="SELECT count(*) from elog" # 3 rows
|
|
|
|
count=$($CLICKHOUSE_CLIENT --query="SELECT COUNT(*) FROM system.zookeeper where path = '/clickhouse/tables/test_00953/elog/blocks'")
|
|
|
|
while [[ $count != 2 ]]
|
|
do
|
|
sleep 1
|
|
count=$($CLICKHOUSE_CLIENT --query="SELECT COUNT(*) FROM system.zookeeper where path = '/clickhouse/tables/test_00953/elog/blocks'")
|
|
done
|
|
|
|
$CLICKHOUSE_CLIENT --query="INSERT INTO elog VALUES (toDate('2018-10-01'), 1, 'hello')"
|
|
|
|
$CLICKHOUSE_CLIENT --query="SELECT count(*) from elog" # 4 rows
|
|
count=$($CLICKHOUSE_CLIENT --query="SELECT COUNT(*) FROM system.zookeeper where path = '/clickhouse/tables/test_00953/elog/blocks'")
|
|
|
|
while [[ $count != 2 ]]
|
|
do
|
|
sleep 1
|
|
count=$($CLICKHOUSE_CLIENT --query="SELECT COUNT(*) FROM system.zookeeper where path = '/clickhouse/tables/test_00953/elog/blocks'")
|
|
done
|
|
|
|
$CLICKHOUSE_CLIENT --query="INSERT INTO elog VALUES (toDate('2018-10-01'), 2, 'hello')"
|
|
|
|
$CLICKHOUSE_CLIENT --query="SELECT count(*) from elog" # 5 rows
|
|
|
|
count=$($CLICKHOUSE_CLIENT --query="SELECT COUNT(*) FROM system.zookeeper where path = '/clickhouse/tables/test_00953/elog/blocks'")
|
|
|
|
while [[ $count != 2 ]]
|
|
do
|
|
sleep 1
|
|
count=$($CLICKHOUSE_CLIENT --query="SELECT COUNT(*) FROM system.zookeeper where path = '/clickhouse/tables/test_00953/elog/blocks'")
|
|
done
|
|
|
|
$CLICKHOUSE_CLIENT --query="INSERT INTO elog VALUES (toDate('2018-10-01'), 2, 'hello')"
|
|
|
|
$CLICKHOUSE_CLIENT --query="SELECT count(*) from elog" # still 5 rows
|
|
|
|
$CLICKHOUSE_CLIENT -q "DROP TABLE elog"
|