Skip to content

Commit 397f874

Browse files
committed
increase global_doc_id to help prevent conflict with mixed workload
1 parent ef1a519 commit 397f874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/base_client/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def cycling_query_generator(queries, total_count):
176176
# Initialize global doc_id offset to ensure uniqueness across intervals
177177
# Start from a high offset to avoid conflicts with uploaded dataset doc_ids
178178
# Most datasets have < 100M records, so starting from 100M should be safe
179-
global_doc_id_offset = 100000000
179+
global_doc_id_offset = 1000000000
180180

181181
# Overall accumulators
182182
overall_results = []

0 commit comments

Comments
 (0)