Add comprehensive parallel index test with multiple index types#3283
Merged
yuzhichang merged 14 commits intoinfiniflow:mainfrom Mar 4, 2026
Merged
Add comprehensive parallel index test with multiple index types#3283yuzhichang merged 14 commits intoinfiniflow:mainfrom
yuzhichang merged 14 commits intoinfiniflow:mainfrom
Conversation
…into add_index_tests
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3283 +/- ##
===========================================
- Coverage 43.43% 29.70% -13.73%
===========================================
Files 731 729 -2
Lines 153374 153350 -24
Branches 27750 27748 -2
===========================================
- Hits 66619 45556 -21063
- Misses 77239 99785 +22546
+ Partials 9516 8009 -1507
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
This PR adds a new test test_multiple_index_types_parallel to verify concurrent read/write operations with various index types in Infinity database.
Test Overview:
4 write threads:
Insert rows with deterministic vector, multivector, text, and category data
8 read threads:
FullText: queries using match_text
Hnsw: vector search using match_dense on vector_col
Hnsw MV: vector search on tensor_col (multivector)
Secondary High: filter queries on id column (high cardinality)
Secondary Low: filter queries on category column (low cardinality)
Fusion RRF: combines fulltext and vector search with RRF fusion
Fusion MV RRF: combines two vector searches (regular + multivector)
Fusion Weighted Sum: combines fulltext and vector search with weighted_sum fusion