ClickHouse/tests/integration/test_attach_without_fetching/test.py

109 lines
4.4 KiB
Python
Raw Normal View History

import time
2021-02-15 18:06:20 +00:00
import pytest
2021-02-15 18:06:20 +00:00
from helpers.cluster import ClickHouseCluster
from helpers.test_tools import assert_eq_with_retry
from helpers.network import PartitionManager
from helpers.corrupt_part_data_on_disk import corrupt_part_data_by_path
def fill_node(node):
node.query(
'''
CREATE TABLE test(n UInt32)
ENGINE = ReplicatedMergeTree('/clickhouse/tables/test', '{replica}')
ORDER BY n PARTITION BY n % 10;
'''.format(replica=node.name))
2021-02-15 18:06:20 +00:00
cluster = ClickHouseCluster(__file__)
configs =["configs/remote_servers.xml"]
2021-02-15 18:06:20 +00:00
node_1 = cluster.add_instance('replica1', with_zookeeper=True, main_configs=configs)
node_2 = cluster.add_instance('replica2', with_zookeeper=True, main_configs=configs)
node_3 = cluster.add_instance('replica3', with_zookeeper=True, main_configs=configs)
2021-02-15 18:06:20 +00:00
@pytest.fixture(scope="module")
def start_cluster():
try:
cluster.start()
fill_node(node_1)
fill_node(node_2)
# the third node is filled after the DETACH query
2021-02-15 18:06:20 +00:00
yield cluster
except Exception as ex:
print(ex)
2021-02-15 18:06:20 +00:00
finally:
cluster.shutdown()
def check_data(nodes, detached_parts):
for node in nodes:
print("> Replication queue for", node.name, "\n> table\treplica_name\tsource_replica\ttype\tposition\n",
node.query("SELECT table, replica_name, source_replica, type, position FROM system.replication_queue"))
node.query("SYSTEM SYNC REPLICA test")
print("> Checking data integrity for", node.name)
2021-02-15 18:06:20 +00:00
for i in range(10):
assert_eq_with_retry(node, "SELECT count() FROM test WHERE n % 10 == " + str(i),
"0\n" if i in detached_parts else "10\n")
assert_eq_with_retry(node, "SELECT count() FROM system.parts WHERE table='test'",
str(10 - len(detached_parts)) + "\n")
res: str = node.query("SELECT * FROM test ORDER BY n")
for other in nodes:
if other != node:
print("> Checking data consistency,", other.name, "vs", node.name)
assert_eq_with_retry(other, "SELECT * FROM test ORDER BY n", res)
# 1. Check that ALTER TABLE ATTACH PART|PARTITION does not fetch data from other replicas if it's present in the
# detached/ folder.
# 2. Check that ALTER TABLE ATTACH PART|PARTITION downloads the data from other replicas if the detached/ folder
# does not contain the part with the correct checksums.
2021-02-15 18:06:20 +00:00
def test_attach_without_fetching(start_cluster):
# Note here requests are used for both PARTITION and PART. This is done for better test diversity.
# The partition and part are used interchangeably which is not true in most cases.
# 0. Insert data on two replicas
node_1.query("INSERT INTO test SELECT * FROM numbers(100)")
check_data([node_1, node_2], detached_parts=[])
# 1. Detach the first two partitions/parts on the replicas
# This part will be fetched from other replicas as it would be missing in the detached/ folder and
# also attached locally.
node_1.query("ALTER TABLE test DETACH PART '0_0_0_0'")
# This partition will be just fetched from other replicas as the checksums won't match
# (we'll manually break the data).
node_1.query("ALTER TABLE test DETACH PARTITION 1")
2021-02-15 18:06:20 +00:00
check_data([node_1, node_2], detached_parts=[0, 1])
2021-02-15 18:06:20 +00:00
# 2. Create the third replica
fill_node(node_3)
2021-02-15 18:06:20 +00:00
# 3. Break the part data on the second node to corrupt the checksums.
# Replica 3 should download the data from replica 1 as there is no local data.
# Replica 2 should also download the data from 1 as the checksums won't match.
print("Checking attach with corrupted checksums")
corrupt_part_data_by_path(node_2, "/var/lib/clickhouse/data/default/test/detached/1_0_0_0")
node_1.query("ALTER TABLE test ATTACH PARTITION 1")
check_data([node_1, node_2, node_3], detached_parts=[0])
# 4. Attach the first part and check if it has been fetched correctly.
# Replica 1 should attach the local data from detached/.
2021-03-03 13:51:41 +00:00
# Replica 3 should download the data from replica 1 as there is no local data and other connections are broken.
print("Checking attach with valid checksums")
with PartitionManager() as pm:
2021-03-03 13:51:41 +00:00
# If something goes wrong and replica 1 wants to fetch data, the test will fail.
pm.partition_instances(node_1, node_2)
2021-03-03 13:51:41 +00:00
pm.partition_instances(node_3, node_2)
node_2.query("ALTER TABLE test ATTACH PART '0_0_0_0'")
check_data([node_1, node_2, node_3], detached_parts=[])