2022-06-09 14:59:12 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
from multiprocessing.dummy import Pool
|
|
|
|
from helpers.corrupt_part_data_on_disk import corrupt_part_data_on_disk
|
|
|
|
from helpers.corrupt_part_data_on_disk import break_part
|
|
|
|
import time
|
|
|
|
|
2022-06-10 11:19:37 +00:00
|
|
|
cluster = ClickHouseCluster(__file__)
|
2022-06-09 14:59:12 +00:00
|
|
|
|
2022-06-10 11:19:37 +00:00
|
|
|
node1 = cluster.add_instance("node1", stay_alive=True, with_zookeeper=True)
|
2022-06-09 14:59:12 +00:00
|
|
|
|
|
|
|
path_to_data = "/var/lib/clickhouse/"
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def started_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
def remove_broken_detached_part_impl(table, node, expect_broken_prefix):
|
|
|
|
assert (
|
|
|
|
node.query(
|
|
|
|
f"SELECT COUNT() FROM system.parts WHERE table='{table}' AND active=1"
|
|
|
|
)
|
|
|
|
== "4\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
path_to_detached = path_to_data + f"data/default/{table}/detached/"
|
|
|
|
|
2022-06-11 12:43:20 +00:00
|
|
|
result = node.exec_in_container(["ls", path_to_detached])
|
2022-06-09 14:59:12 +00:00
|
|
|
assert result.strip() == ""
|
|
|
|
|
|
|
|
corrupt_part_data_on_disk(node, table, "all_3_3_0")
|
|
|
|
break_part(node, table, "all_3_3_0")
|
2022-06-11 12:43:20 +00:00
|
|
|
node.query(f"ALTER TABLE {table} DETACH PART 'all_1_1_0'")
|
|
|
|
result = node.exec_in_container(["touch", f"{path_to_detached}trash"])
|
2022-06-13 19:27:54 +00:00
|
|
|
|
2022-06-13 12:25:42 +00:00
|
|
|
node.exec_in_container(["mkdir", f"{path_to_detached}../broken_all_fake"])
|
2022-06-13 19:46:57 +00:00
|
|
|
node.exec_in_container(
|
|
|
|
["touch", "-t", "1312031429.30", f"{path_to_detached}../broken_all_fake"]
|
|
|
|
)
|
2022-06-13 12:25:42 +00:00
|
|
|
result = node.exec_in_container(["stat", f"{path_to_detached}../broken_all_fake"])
|
|
|
|
print(result)
|
2022-06-13 19:46:57 +00:00
|
|
|
assert "Modify: 2013-12-03" in result
|
|
|
|
node.exec_in_container(
|
|
|
|
[
|
|
|
|
"mv",
|
|
|
|
f"{path_to_detached}../broken_all_fake",
|
|
|
|
f"{path_to_detached}broken_all_fake",
|
|
|
|
]
|
|
|
|
)
|
2022-06-09 14:59:12 +00:00
|
|
|
|
2022-06-13 19:27:54 +00:00
|
|
|
node.exec_in_container(["mkdir", f"{path_to_detached}../unexpected_all_42_1337_5"])
|
2022-06-13 19:46:57 +00:00
|
|
|
node.exec_in_container(
|
|
|
|
[
|
|
|
|
"touch",
|
|
|
|
"-t",
|
|
|
|
"1312031429.30",
|
|
|
|
f"{path_to_detached}../unexpected_all_42_1337_5",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
result = node.exec_in_container(
|
|
|
|
["stat", f"{path_to_detached}../unexpected_all_42_1337_5"]
|
|
|
|
)
|
2022-06-13 19:27:54 +00:00
|
|
|
print(result)
|
2022-06-13 19:46:57 +00:00
|
|
|
assert "Modify: 2013-12-03" in result
|
|
|
|
node.exec_in_container(
|
|
|
|
[
|
|
|
|
"mv",
|
|
|
|
f"{path_to_detached}../unexpected_all_42_1337_5",
|
|
|
|
f"{path_to_detached}unexpected_all_42_1337_5",
|
|
|
|
]
|
|
|
|
)
|
2022-06-13 19:27:54 +00:00
|
|
|
|
2022-06-09 14:59:12 +00:00
|
|
|
result = node.query(
|
|
|
|
f"CHECK TABLE {table}", settings={"check_query_single_value_result": 0}
|
|
|
|
)
|
|
|
|
assert "all_3_3_0\t0" in result
|
|
|
|
|
|
|
|
node.query(f"DETACH TABLE {table}")
|
|
|
|
node.query(f"ATTACH TABLE {table}")
|
|
|
|
|
2022-06-11 12:43:20 +00:00
|
|
|
result = node.exec_in_container(["ls", path_to_detached])
|
2022-06-09 14:59:12 +00:00
|
|
|
print(result)
|
|
|
|
assert f"{expect_broken_prefix}_all_3_3_0" in result
|
2022-06-11 12:43:20 +00:00
|
|
|
assert "all_1_1_0" in result
|
|
|
|
assert "trash" in result
|
2022-06-13 12:25:42 +00:00
|
|
|
assert "broken_all_fake" in result
|
2022-06-13 19:27:54 +00:00
|
|
|
assert "unexpected_all_42_1337_5" in result
|
2022-06-09 14:59:12 +00:00
|
|
|
|
|
|
|
time.sleep(15)
|
|
|
|
|
2022-06-11 12:43:20 +00:00
|
|
|
result = node.exec_in_container(["ls", path_to_detached])
|
2022-06-09 14:59:12 +00:00
|
|
|
print(result)
|
|
|
|
assert f"{expect_broken_prefix}_all_3_3_0" not in result
|
2022-06-11 12:43:20 +00:00
|
|
|
assert "all_1_1_0" in result
|
|
|
|
assert "trash" in result
|
2022-06-13 12:25:42 +00:00
|
|
|
assert "broken_all_fake" in result
|
2022-06-13 22:17:00 +00:00
|
|
|
assert "unexpected_all_42_1337_5" not in result
|
2022-06-09 14:59:12 +00:00
|
|
|
|
|
|
|
node.query(f"DROP TABLE {table} SYNC")
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_broken_detached_part_merge_tree(started_cluster):
|
|
|
|
node1.query(
|
|
|
|
"""
|
2022-06-10 11:19:37 +00:00
|
|
|
CREATE TABLE
|
|
|
|
mt(id UInt32, value Int32)
|
2022-06-09 14:59:12 +00:00
|
|
|
ENGINE = MergeTree() ORDER BY id
|
2022-06-10 11:19:37 +00:00
|
|
|
SETTINGS
|
|
|
|
merge_tree_enable_clear_old_broken_detached=1,
|
2022-06-14 09:52:44 +00:00
|
|
|
merge_tree_clear_old_broken_detached_parts_ttl_timeout_seconds=5;
|
2022-06-09 14:59:12 +00:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
for i in range(4):
|
|
|
|
node1.query(
|
|
|
|
f"INSERT INTO mt SELECT number, number * number FROM numbers ({i * 100000}, 100000)"
|
|
|
|
)
|
|
|
|
|
|
|
|
remove_broken_detached_part_impl("mt", node1, "broken-on-start")
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_broken_detached_part_replicated_merge_tree(started_cluster):
|
|
|
|
node1.query(
|
|
|
|
f"""
|
2022-06-10 11:19:37 +00:00
|
|
|
CREATE TABLE
|
|
|
|
replicated_mt(date Date, id UInt32, value Int32)
|
2022-06-09 14:59:12 +00:00
|
|
|
ENGINE = ReplicatedMergeTree('/clickhouse/tables/replicated_mt', '{node1.name}') ORDER BY id
|
2022-06-10 11:19:37 +00:00
|
|
|
SETTINGS
|
|
|
|
merge_tree_enable_clear_old_broken_detached=1,
|
2022-06-14 09:52:44 +00:00
|
|
|
merge_tree_clear_old_broken_detached_parts_ttl_timeout_seconds=5,
|
2022-06-10 11:19:37 +00:00
|
|
|
cleanup_delay_period=1,
|
|
|
|
cleanup_delay_period_random_add=0;
|
2022-06-09 14:59:12 +00:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
for i in range(4):
|
|
|
|
node1.query(
|
|
|
|
f"INSERT INTO replicated_mt SELECT toDate('2019-10-01'), number, number * number FROM numbers ({i * 100000}, 100000)"
|
|
|
|
)
|
|
|
|
|
|
|
|
remove_broken_detached_part_impl("replicated_mt", node1, "broken")
|