mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
* Use cluster default shard transfer method for fallback When a WAL delta automatic transfer fails, the driver falls back to the method passed via `fallback_method`. This was hard-coded to `StreamRecords` (unless `prevent_unoptimized` was enabled), which is inconsistent with the 1.18.0+ default of `Snapshot` and ignores any configured `default_shard_transfer_method`. Use `Collection::default_shard_transfer_method()` instead, so the fallback matches the cluster default. With `prevent_unoptimized` we still pin to `Snapshot` to preserve deferred point state exactly (raw segment copy); stream_records would send deferred points but they would not be deferred on the target. Co-authored-by: Cursor <cursoragent@cursor.com> * Avoid wal_delta fallback, update fallback test If the cluster default transfer method is wal_delta, the same-method fallback would be refused by the driver. Use snapshot as a safe fallback in that case; snapshot is also the 1.18.0+ default. Update test_shard_wal_delta_transfer_fallback to assert the new snapshot fallback (was stream_records). Co-authored-by: Cursor <cursoragent@cursor.com> * Address clippy wildcard_enum_match_arm Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor Agent <agent@cursor.com> Co-authored-by: Cursor <cursoragent@cursor.com>
798 lines
30 KiB
Python
798 lines
30 KiB
Python
import multiprocessing
|
|
import pathlib
|
|
import random
|
|
from operator import itemgetter
|
|
from time import sleep
|
|
|
|
from .fixtures import upsert_random_points, create_collection
|
|
from .utils import *
|
|
|
|
COLLECTION_NAME = "test_collection"
|
|
|
|
|
|
def update_points_in_loop(peer_url, collection_name, offset=0, throttle=False, duration=None, stop_event=None):
|
|
start = time.time()
|
|
limit = 3
|
|
|
|
while True:
|
|
if stop_event is not None and stop_event.is_set():
|
|
break
|
|
upsert_random_points(peer_url, limit, collection_name, offset=offset)
|
|
offset += limit
|
|
|
|
if throttle:
|
|
sleep(random.uniform(0.4, 0.6))
|
|
if duration is not None and (time.time() - start) > duration:
|
|
break
|
|
|
|
|
|
def run_update_points_in_background(peer_url, collection_name, init_offset=0, throttle=False, duration=None):
|
|
stop_event = multiprocessing.Event()
|
|
p = multiprocessing.Process(target=update_points_in_loop, args=(peer_url, collection_name, init_offset, throttle, duration, stop_event))
|
|
p.start()
|
|
p.stop_event = stop_event
|
|
return p
|
|
|
|
|
|
def stop_update_process(process, timeout=10):
|
|
"""Signal the uploader to exit between requests, then join.
|
|
|
|
This ensures no HTTP upsert is in-flight when we return, so a subsequent
|
|
peer kill cannot interrupt partial replication. Falls back to SIGKILL if
|
|
the process does not exit within the timeout.
|
|
"""
|
|
process.stop_event.set()
|
|
process.join(timeout=timeout)
|
|
if process.is_alive():
|
|
process.kill()
|
|
process.join()
|
|
|
|
|
|
def check_data_consistency(data):
|
|
assert(len(data) > 1)
|
|
|
|
for i in range(len(data) - 1):
|
|
j = i + 1
|
|
|
|
data_i = data[i]
|
|
data_j = data[j]
|
|
|
|
if data_i != data_j:
|
|
ids_i = set(x['id'] for x in data_i["points"])
|
|
ids_j = set(x['id'] for x in data_j["points"])
|
|
|
|
diff = ids_i - ids_j
|
|
|
|
if len(diff) == 0:
|
|
i_points, j_points = [sorted(l, key=itemgetter('id')) for l in (data_i["points"], data_j["points"])]
|
|
pairs = zip(i_points, j_points)
|
|
diff = [(x, y) for x, y in pairs if x != y]
|
|
print(f'Points between {i} and {j} are not equal, diff: "{diff}"')
|
|
elif len(diff) < 100:
|
|
print(f"Diff between {i} and {j}: {diff}")
|
|
else:
|
|
print(f"Diff len between {i} and {j}: {len(diff)}")
|
|
|
|
assert False, "Data on all nodes should be consistent"
|
|
|
|
|
|
# Test a WAL delta transfer between two that have no difference.
|
|
#
|
|
# No WAL records will be transferred as the WAL should be empty. We cannot
|
|
# assert that property in this test however. It is tested both ways.
|
|
#
|
|
# Test that data on the both sides is consistent
|
|
def test_empty_shard_wal_delta_transfer(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, _peer_dirs, _bootstrap_uri = start_cluster(tmp_path, 2)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=1, replication_factor=2)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
# Insert some initial number of points
|
|
upsert_random_points(peer_api_uris[0], 100)
|
|
|
|
cluster_info_0 = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
cluster_info_1 = get_collection_cluster_info(peer_api_uris[1], COLLECTION_NAME)
|
|
|
|
shard_id = cluster_info_0['local_shards'][0]['shard_id']
|
|
|
|
# Re-replicate shard from one node to another, should be no diff
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": shard_id,
|
|
"from_peer_id": cluster_info_0['peer_id'],
|
|
"to_peer_id": cluster_info_1['peer_id'],
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Wait for end of shard transfer
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
# Assume we got an empty WAL delta here, logging 'Resolved WAL delta that is
|
|
# empty'. But we cannot assert that at this point.
|
|
|
|
# Doing it the other way around should result in exactly the same
|
|
r = requests.post(
|
|
f"{peer_api_uris[1]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": shard_id,
|
|
"from_peer_id": cluster_info_1['peer_id'],
|
|
"to_peer_id": cluster_info_0['peer_id'],
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Wait for end of shard transfer
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[1], COLLECTION_NAME, 0)
|
|
|
|
# Assume we got an empty WAL delta here, logging 'Resolved WAL delta that is
|
|
# empty'. But we cannot assert that at this point.
|
|
|
|
cluster_info_0 = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
cluster_info_1 = get_collection_cluster_info(peer_api_uris[1], COLLECTION_NAME)
|
|
assert len(cluster_info_0['local_shards']) == 1
|
|
assert len(cluster_info_1['local_shards']) == 1
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": True,
|
|
"with_payload": True,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
check_data_consistency(data)
|
|
|
|
|
|
# Test node recovery with a WAL delta transfer.
|
|
#
|
|
# The second node is killed while operations are ongoing. We later restart the
|
|
# node, and manually trigger rereplication to sync it up again.
|
|
#
|
|
# Test that data on the both sides is consistent
|
|
def test_shard_wal_delta_transfer_manual_recovery(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
# Prevent automatic recovery on restarted node, so we can manually recover with a specific transfer method
|
|
env={
|
|
"QDRANT__STORAGE__PERFORMANCE__INCOMING_SHARD_TRANSFERS_LIMIT": "0",
|
|
"QDRANT__STORAGE__PERFORMANCE__OUTGOING_SHARD_TRANSFERS_LIMIT": "0",
|
|
}
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, peer_dirs, bootstrap_uri = start_cluster(tmp_path, 3, extra_env=env)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=1, replication_factor=3)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
transfer_collection_cluster_info = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
|
|
from_peer_id = transfer_collection_cluster_info['peer_id']
|
|
to_peer_id = receiver_collection_cluster_info['peer_id']
|
|
|
|
# Start pushing points to the cluster
|
|
upload_process_1 = run_update_points_in_background(peer_api_uris[0], COLLECTION_NAME, init_offset=100000, throttle=True)
|
|
upload_process_2 = run_update_points_in_background(peer_api_uris[1], COLLECTION_NAME, init_offset=200000, throttle=True)
|
|
upload_process_3 = run_update_points_in_background(peer_api_uris[2], COLLECTION_NAME, init_offset=300000, throttle=True)
|
|
|
|
sleep(1)
|
|
|
|
# Stop uploader cleanly before killing peer so no upsert is in-flight
|
|
stop_update_process(upload_process_3)
|
|
p = processes.pop()
|
|
restart_port = p.p2p_port
|
|
p.kill()
|
|
|
|
upsert_random_points(peer_api_uris[0], 100, batch_size=5)
|
|
|
|
sleep(3)
|
|
|
|
# Restart the peer
|
|
peer_api_uris[-1] = start_peer(peer_dirs[-1], "peer_2_restarted.log", bootstrap_uri, port=restart_port, extra_env=env)
|
|
wait_for_peer_online(peer_api_uris[-1], "/")
|
|
|
|
# Recover shard with WAL delta transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Assert WAL delta transfer progress, and wait for it to finish
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 1)
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
# All nodes must have one shard
|
|
for uri in peer_api_uris:
|
|
cluster_info = get_collection_cluster_info(uri, COLLECTION_NAME)
|
|
assert len(cluster_info['local_shards']) == 1
|
|
|
|
upload_process_1.kill()
|
|
upload_process_2.kill()
|
|
sleep(1)
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": True,
|
|
"with_payload": True,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
check_data_consistency(data)
|
|
|
|
|
|
# Test node recovery on a chain of nodes with a WAL delta transfer.
|
|
#
|
|
# We have a cluster with 5 nodes, all are getting insertions.
|
|
# We kill the 4th and 5th node at different times.
|
|
# We restart them both. The 4th node is recovered first, then the 4th node
|
|
# recovers the 5th node, forming a chain.
|
|
# We manually trigger rereplication to sync it up again.
|
|
#
|
|
# Tests that data on all 5 nodes remains consistent.
|
|
def test_shard_wal_delta_transfer_manual_recovery_chain(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
# Prevent automatic recovery on restarted node, so we can manually recover with a specific transfer method
|
|
env={
|
|
"QDRANT__STORAGE__PERFORMANCE__INCOMING_SHARD_TRANSFERS_LIMIT": "0",
|
|
"QDRANT__STORAGE__PERFORMANCE__OUTGOING_SHARD_TRANSFERS_LIMIT": "0",
|
|
}
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, peer_dirs, bootstrap_uri = start_cluster(tmp_path, 5, extra_env=env)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=1, replication_factor=5)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
peer_cluster_info = [get_collection_cluster_info(uri, COLLECTION_NAME) for uri in peer_api_uris]
|
|
peer_ids = [cluster_info['peer_id'] for cluster_info in peer_cluster_info]
|
|
|
|
# Start pushing points to the cluster
|
|
upload_process_1 = run_update_points_in_background(peer_api_uris[0], COLLECTION_NAME, init_offset=100000, throttle=True)
|
|
upload_process_2 = run_update_points_in_background(peer_api_uris[1], COLLECTION_NAME, init_offset=200000, throttle=True)
|
|
upload_process_3 = run_update_points_in_background(peer_api_uris[2], COLLECTION_NAME, init_offset=300000, throttle=True)
|
|
upload_process_4 = run_update_points_in_background(peer_api_uris[3], COLLECTION_NAME, init_offset=400000, throttle=True)
|
|
upload_process_5 = run_update_points_in_background(peer_api_uris[4], COLLECTION_NAME, init_offset=500000, throttle=True)
|
|
|
|
sleep(1)
|
|
|
|
# Stop uploader cleanly before killing peer so no upsert is in-flight
|
|
stop_update_process(upload_process_5)
|
|
p5 = processes.pop()
|
|
restart_port_5 = p5.p2p_port
|
|
p5.kill()
|
|
|
|
sleep(1)
|
|
|
|
# Stop uploader cleanly before killing peer so no upsert is in-flight
|
|
stop_update_process(upload_process_4)
|
|
p4 = processes.pop()
|
|
restart_port_4 = p4.p2p_port
|
|
p4.kill()
|
|
|
|
upsert_random_points(peer_api_uris[0], 100, batch_size=5)
|
|
|
|
sleep(3)
|
|
|
|
# Restart 4th and 5th peer on same ports
|
|
peer_api_uris[3] = start_peer(peer_dirs[3], "peer_3_restarted.log", bootstrap_uri, port=restart_port_4, extra_env=env)
|
|
peer_api_uris[4] = start_peer(peer_dirs[4], "peer_4_restarted.log", bootstrap_uri, port=restart_port_5, extra_env=env)
|
|
wait_for_peer_online(peer_api_uris[3], "/")
|
|
wait_for_peer_online(peer_api_uris[4], "/")
|
|
|
|
# Recover shard with WAL delta transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": peer_ids[0],
|
|
"to_peer_id": peer_ids[3],
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Assert WAL delta transfer progress, and wait for it to finish
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 1)
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
# Start inserting into the fourth peer again
|
|
upload_process_4 = run_update_points_in_background(peer_api_uris[3], COLLECTION_NAME, init_offset=600000, throttle=True)
|
|
|
|
sleep(1)
|
|
|
|
# Recover shard with WAL delta transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[3]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": peer_ids[3],
|
|
"to_peer_id": peer_ids[4],
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Assert WAL delta transfer progress, and wait for it to finish
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[3], COLLECTION_NAME, 1)
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[3], COLLECTION_NAME, 0)
|
|
|
|
upload_process_1.kill()
|
|
upload_process_2.kill()
|
|
upload_process_3.kill()
|
|
upload_process_4.kill()
|
|
|
|
sleep(1)
|
|
|
|
# All nodes must have one shard
|
|
for uri in peer_api_uris:
|
|
cluster_info = get_collection_cluster_info(uri, COLLECTION_NAME)
|
|
assert len(cluster_info['local_shards']) == 1
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": True,
|
|
"with_payload": True,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
check_data_consistency(data)
|
|
|
|
|
|
# Test aborting and retrying node recovery with a WAL delta transfer.
|
|
#
|
|
# First we measure the baseline recovery time by killing and recovering
|
|
# the last node. Then we kill the last node again and start recovery, but we
|
|
# abort recovery in the middle. We rereplicate again to fully recover.
|
|
#
|
|
# Test that data on the both sides is consistent even if replication was
|
|
# aborted.
|
|
def test_shard_wal_delta_transfer_abort_and_retry(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
# Prevent automatic recovery on restarted node, so we can manually recover with a specific transfer method
|
|
env={
|
|
"QDRANT__STORAGE__PERFORMANCE__INCOMING_SHARD_TRANSFERS_LIMIT": "0",
|
|
"QDRANT__STORAGE__PERFORMANCE__OUTGOING_SHARD_TRANSFERS_LIMIT": "0",
|
|
}
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, peer_dirs, bootstrap_uri = start_cluster(tmp_path, 3, extra_env=env)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=1, replication_factor=3)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
transfer_collection_cluster_info = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
|
|
from_peer_id = transfer_collection_cluster_info['peer_id']
|
|
to_peer_id = receiver_collection_cluster_info['peer_id']
|
|
|
|
# Start pushing points to the cluster
|
|
upload_process_1 = run_update_points_in_background(peer_api_uris[0], COLLECTION_NAME, init_offset=100000, throttle=True)
|
|
upload_process_2 = run_update_points_in_background(peer_api_uris[1], COLLECTION_NAME, init_offset=200000, throttle=True)
|
|
upload_process_3 = run_update_points_in_background(peer_api_uris[2], COLLECTION_NAME, init_offset=300000, throttle=True)
|
|
|
|
sleep(1)
|
|
|
|
# Stop uploader cleanly before killing peer so no upsert is in-flight
|
|
stop_update_process(upload_process_3)
|
|
p = processes.pop()
|
|
restart_port = p.p2p_port
|
|
p.kill()
|
|
|
|
sleep(1)
|
|
|
|
upsert_random_points(peer_api_uris[0], 250, batch_size=5)
|
|
|
|
sleep(3)
|
|
|
|
# Restart the peer
|
|
peer_api_uris[-1] = start_peer(peer_dirs[-1], "peer_2_restarted.log", bootstrap_uri, port=restart_port, extra_env=env)
|
|
wait_for_peer_online(peer_api_uris[-1], "/")
|
|
|
|
# Recover shard with WAL delta transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Wait for at least one record to be transferred
|
|
wait_for_collection_shard_transfer_progress(peer_api_uris[0], COLLECTION_NAME, None, 1)
|
|
|
|
# Then abort the transfer right away while it is still in progress
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"abort_transfer": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
sleep(1)
|
|
|
|
# Confirm the shard is still dead
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
assert receiver_collection_cluster_info["local_shards"][0]["state"] == "Dead"
|
|
|
|
# Retry recovery with WAL delta transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Assert WAL delta transfer progress, and wait for it to finish
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 1)
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
# All nodes must have one shard
|
|
for uri in peer_api_uris:
|
|
cluster_info = get_collection_cluster_info(uri, COLLECTION_NAME)
|
|
assert len(cluster_info['local_shards']) == 1
|
|
|
|
upload_process_1.kill()
|
|
upload_process_2.kill()
|
|
sleep(1)
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": True,
|
|
"with_payload": True,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
check_data_consistency(data)
|
|
|
|
|
|
# Test the shard transfer fallback for WAL delta transfer.
|
|
#
|
|
# We replicate a shard with WAL delta transfer to a node that does not have any
|
|
# data for this shard yet. This is not supported in WAL delta transfer, so it
|
|
# should fall back to a different method.
|
|
#
|
|
# Test that data on the both sides is consistent
|
|
def test_shard_wal_delta_transfer_fallback(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, _peer_dirs, _bootstrap_uri = start_cluster(tmp_path, 3)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=3, replication_factor=1)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
# Insert some initial number of points
|
|
upsert_random_points(peer_api_uris[0], 2500)
|
|
|
|
transfer_collection_cluster_info = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
|
|
from_peer_id = transfer_collection_cluster_info['peer_id']
|
|
to_peer_id = receiver_collection_cluster_info['peer_id']
|
|
|
|
shard_id = transfer_collection_cluster_info['local_shards'][0]['shard_id']
|
|
|
|
# Transfer shard from one node to another
|
|
|
|
# Replicate shard `shard_id` to peer `target_peer_id`
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": shard_id,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# WAL delta transfer should fail because the shard does not exist on the
|
|
# target node, assert we fall back to the snapshot method (the 1.18.0+
|
|
# default).
|
|
# Then wait for the transfer to finish
|
|
wait_for_collection_shard_transfer_method(peer_api_uris[0], COLLECTION_NAME, "snapshot")
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
number_local_shards = len(receiver_collection_cluster_info['local_shards'])
|
|
assert number_local_shards == 2
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": True,
|
|
"with_payload": True,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
check_data_consistency(data)
|
|
|
|
|
|
# If the difference between the two nodes is too big, the WAL delta transfer
|
|
# cannot be used. In this case, we should fall back to a different method - the stream transfer.
|
|
def test_shard_fallback_on_big_diff(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
# Prevent automatic recovery on restarted node, so we can manually recover with a specific transfer method
|
|
env={
|
|
"QDRANT__STORAGE__PERFORMANCE__INCOMING_SHARD_TRANSFERS_LIMIT": "0",
|
|
"QDRANT__STORAGE__PERFORMANCE__OUTGOING_SHARD_TRANSFERS_LIMIT": "0",
|
|
"QDRANT__STORAGE__WAL__WAL_CAPACITY_MB": "1",
|
|
}
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, peer_dirs, bootstrap_uri = start_cluster(tmp_path, 3, extra_env=env)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=1, replication_factor=3)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
transfer_collection_cluster_info = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
|
|
from_peer_id = transfer_collection_cluster_info['peer_id']
|
|
to_peer_id = receiver_collection_cluster_info['peer_id']
|
|
|
|
shard_id = 0
|
|
|
|
upsert_random_points(peer_api_uris[0], 100)
|
|
|
|
sleep(1)
|
|
|
|
# Kill last peer
|
|
p = processes.pop()
|
|
restart_port = p.p2p_port
|
|
p.kill()
|
|
|
|
sleep(1)
|
|
|
|
for i in range(10):
|
|
upsert_random_points(peer_api_uris[0], 1000, offset=100000 + i * 1000)
|
|
|
|
sleep(1)
|
|
|
|
# Restart the peer
|
|
peer_api_uris[-1] = start_peer(peer_dirs[-1], "peer_2_restarted.log", bootstrap_uri, port=restart_port, extra_env=env)
|
|
wait_for_peer_online(peer_api_uris[-1], "/")
|
|
|
|
|
|
# Move shard `shard_id` to peer `target_peer_id`
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": shard_id,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Wait for end of shard transfer
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": False,
|
|
"with_payload": False,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
|
|
check_data_consistency(data)
|
|
|
|
|
|
# Tests that aborting a stream records transfer does not break a subsequent WAL
|
|
# delta transfer
|
|
#
|
|
# Qdrant 1.16.2 and earlier had a bug where aborting a stream records (or other)
|
|
# transfer could break the subsequent WAL delta transfer. Specifically, any new
|
|
# updates coming in during a stream records (or other) transfer may bump the
|
|
# last seen clocks. If we abort the stream records transfer, the last seen
|
|
# clocks may have jumped over a huge gap on the receiving node. A follow up WAL
|
|
# delta transfer will only transfer changes since the last seen clocks, missing
|
|
# a huge set of changes in that jump.
|
|
#
|
|
# In practice, this sequence is problematic:
|
|
# - start stream records transfer to recover replica
|
|
# - send new update through all peers
|
|
# - abort stream records transfer
|
|
# - start WAL delta transfer
|
|
# - WAL delta resolves very short or empty diff
|
|
# - Problem: if stream records only transferred 10%, we now miss 90%
|
|
#
|
|
# Test that data on the both sides is consistent
|
|
#
|
|
# Bug: <https://github.com/qdrant/qdrant/pull/7787>
|
|
def test_abort_stream_records_breaks_wal_delta(tmp_path: pathlib.Path):
|
|
assert_project_root()
|
|
|
|
env={
|
|
# Prevent automatic recovery on restarted node, so we can manually control transfers
|
|
"QDRANT__STORAGE__PERFORMANCE__INCOMING_SHARD_TRANSFERS_LIMIT": "0",
|
|
"QDRANT__STORAGE__PERFORMANCE__OUTGOING_SHARD_TRANSFERS_LIMIT": "0",
|
|
# Artificially make stream records transfer very slow
|
|
"QDRANT_STAGING_SHARD_TRANSFER_DELAY_SEC": "1",
|
|
}
|
|
|
|
# seed port to reuse the same port for the restarted nodes
|
|
peer_api_uris, peer_dirs, bootstrap_uri = start_cluster(tmp_path, 3, extra_env=env)
|
|
|
|
create_collection(peer_api_uris[0], shard_number=1, replication_factor=3)
|
|
wait_collection_exists_and_active_on_all_peers(
|
|
collection_name=COLLECTION_NAME,
|
|
peer_api_uris=peer_api_uris,
|
|
)
|
|
|
|
transfer_collection_cluster_info = get_collection_cluster_info(peer_api_uris[0], COLLECTION_NAME)
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
|
|
from_peer_id = transfer_collection_cluster_info['peer_id']
|
|
to_peer_id = receiver_collection_cluster_info['peer_id']
|
|
|
|
# Initialize clock
|
|
upsert_random_points(peer_api_uris[0], 1, COLLECTION_NAME)
|
|
sleep(1)
|
|
|
|
# Kill last peer
|
|
p = processes.pop()
|
|
restart_port = p.p2p_port
|
|
p.kill()
|
|
|
|
# Upsert data, last peer won't receive it
|
|
upsert_random_points(peer_api_uris[0], 2000, COLLECTION_NAME, batch_size=100)
|
|
|
|
# Restart the peer
|
|
peer_api_uris[-1] = start_peer(peer_dirs[-1], "peer_2_restarted.log", bootstrap_uri, port=restart_port, extra_env=env)
|
|
wait_for_peer_online(peer_api_uris[-1], "/")
|
|
|
|
# Recover shard with stream records transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "stream_records",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 1)
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[2], COLLECTION_NAME, 1)
|
|
|
|
# Send new update through first peer
|
|
#
|
|
# Important: bumps last seen clocks on receiving node, making incorrect WAL delta resolution possible
|
|
#
|
|
# In practice you need to bump all known clocks, and may need to send
|
|
# updates through multiple peers. But since we've only sent updates through
|
|
# the first peer and it is the only known clock, we only have to bump that
|
|
# one clock here.
|
|
upsert_random_points(peer_api_uris[0], 1, COLLECTION_NAME)
|
|
|
|
# Stream records transfer must still be ongoing
|
|
# We artificially slow it down through an environment variable
|
|
assert check_collection_shard_transfer_method(peer_api_uris[0], COLLECTION_NAME, "stream_records") and check_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 1)
|
|
|
|
# Abort stream records transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"abort_transfer": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
sleep(1)
|
|
|
|
# Abort must leave replica in Dead state
|
|
receiver_collection_cluster_info = get_collection_cluster_info(peer_api_uris[2], COLLECTION_NAME)
|
|
assert len(receiver_collection_cluster_info['local_shards']) == 1
|
|
assert receiver_collection_cluster_info['local_shards'][0]['state'] == 'Dead'
|
|
|
|
# Recover shard with WAL delta transfer
|
|
r = requests.post(
|
|
f"{peer_api_uris[0]}/collections/{COLLECTION_NAME}/cluster", json={
|
|
"replicate_shard": {
|
|
"shard_id": 0,
|
|
"from_peer_id": from_peer_id,
|
|
"to_peer_id": to_peer_id,
|
|
"method": "wal_delta",
|
|
}
|
|
})
|
|
assert_http_ok(r)
|
|
|
|
# Wait for WAL delta transfer to start, then wait for any transfer to finish
|
|
# After fixing this bug, this will switch to a longer running stream records transfer
|
|
wait_for_collection_shard_transfer_method(peer_api_uris[0], COLLECTION_NAME, "wal_delta")
|
|
wait_for_collection_shard_transfers_count(peer_api_uris[0], COLLECTION_NAME, 0)
|
|
|
|
# Ensure data consistency
|
|
data = []
|
|
for uri in peer_api_uris:
|
|
r = requests.post(
|
|
f"{uri}/collections/{COLLECTION_NAME}/points/scroll", json={
|
|
"limit": 999999999,
|
|
"with_vectors": True,
|
|
"with_payload": True,
|
|
}
|
|
)
|
|
assert_http_ok(r)
|
|
data.append(r.json()["result"])
|
|
check_data_consistency(data)
|