2022-08-30 13:41:36 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
from helpers.network import PartitionManager
|
|
|
|
|
|
|
|
test_recover_staled_replica_run = 1
|
|
|
|
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
|
|
|
|
|
|
node = cluster.add_instance(
|
|
|
|
"node",
|
2022-09-02 07:49:09 +00:00
|
|
|
main_configs=["configs/enable_keeper_map.xml"],
|
2022-08-30 13:41:36 +00:00
|
|
|
with_zookeeper=True,
|
|
|
|
stay_alive=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def started_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
def get_genuine_zk():
|
|
|
|
return cluster.get_kazoo_client("zoo1")
|
|
|
|
|
|
|
|
|
|
|
|
def remove_children(client, path):
|
|
|
|
children = client.get_children(path)
|
|
|
|
|
|
|
|
for child in children:
|
|
|
|
child_path = f"{path}/{child}"
|
|
|
|
remove_children(client, child_path)
|
|
|
|
client.delete(child_path)
|
|
|
|
|
|
|
|
|
|
|
|
def test_keeper_map_without_zk(started_cluster):
|
|
|
|
def assert_keeper_exception_after_partition(query):
|
|
|
|
with PartitionManager() as pm:
|
|
|
|
pm.drop_instance_zk_connections(node)
|
|
|
|
error = node.query_and_get_error(query)
|
|
|
|
assert "Coordination::Exception" in error
|
|
|
|
|
|
|
|
assert_keeper_exception_after_partition(
|
2023-01-10 13:16:28 +00:00
|
|
|
"CREATE TABLE test_keeper_map_without_zk (key UInt64, value UInt64) ENGINE = KeeperMap('/test_without_zk') PRIMARY KEY(key);"
|
2022-08-30 13:41:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
node.query(
|
2023-01-10 13:16:28 +00:00
|
|
|
"CREATE TABLE test_keeper_map_without_zk (key UInt64, value UInt64) ENGINE = KeeperMap('/test_without_zk') PRIMARY KEY(key);"
|
2022-08-30 13:41:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert_keeper_exception_after_partition(
|
2023-01-10 13:16:28 +00:00
|
|
|
"INSERT INTO test_keeper_map_without_zk VALUES (1, 11)"
|
2022-08-30 13:41:36 +00:00
|
|
|
)
|
2023-01-10 13:16:28 +00:00
|
|
|
node.query("INSERT INTO test_keeper_map_without_zk VALUES (1, 11)")
|
2022-08-30 13:41:36 +00:00
|
|
|
|
2023-01-10 13:16:28 +00:00
|
|
|
assert_keeper_exception_after_partition("SELECT * FROM test_keeper_map_without_zk")
|
|
|
|
node.query("SELECT * FROM test_keeper_map_without_zk")
|
2022-08-30 13:41:36 +00:00
|
|
|
|
|
|
|
with PartitionManager() as pm:
|
|
|
|
pm.drop_instance_zk_connections(node)
|
|
|
|
node.restart_clickhouse(60)
|
2023-01-10 13:16:28 +00:00
|
|
|
error = node.query_and_get_error("SELECT * FROM test_keeper_map_without_zk")
|
2022-08-30 13:41:36 +00:00
|
|
|
assert "Failed to activate table because of connection issues" in error
|
|
|
|
|
2023-01-10 13:16:28 +00:00
|
|
|
node.query("SELECT * FROM test_keeper_map_without_zk")
|
2022-08-30 13:41:36 +00:00
|
|
|
|
|
|
|
client = get_genuine_zk()
|
2023-01-10 13:16:28 +00:00
|
|
|
remove_children(client, "/test_keeper_map/test_without_zk")
|
2022-08-30 13:41:36 +00:00
|
|
|
node.restart_clickhouse(60)
|
2023-01-10 13:16:28 +00:00
|
|
|
error = node.query_and_get_error("SELECT * FROM test_keeper_map_without_zk")
|
2022-08-30 13:41:36 +00:00
|
|
|
assert "Failed to activate table because of invalid metadata in ZooKeeper" in error
|
|
|
|
|
2023-01-10 13:16:28 +00:00
|
|
|
node.query("DETACH TABLE test_keeper_map_without_zk")
|
2022-08-30 13:41:36 +00:00
|
|
|
|
|
|
|
client.stop()
|