Conversation
kamronis
force-pushed
the
rabbitq-opensource
branch
from
September 1, 2026 10:51
97e240b to
d2bc41f
Compare
kamronis
force-pushed
the
rabbitq-opensource
branch
from
September 3, 2026 04:26
ccc4223 to
d4785f3
Compare
kamronis
force-pushed
the
rabbitq-opensource
branch
from
September 14, 2026 05:20
b369dec to
bd0f35b
Compare
kamronis
force-pushed
the
rabbitq-opensource
branch
from
September 15, 2026 08:34
ed4db09 to
1d567fa
Compare
Contributor
There was a problem hiding this comment.
✅ Gate recommendation: approve.
The merge from main leaves the reviewed Fast-to-Accurate RQ patch unchanged. The newly merged batch-executor accessors are additive, and current-head verification confirms quantized refinement still routes through the per-query rerank while the expanded batch-KNN cases pass. Accurate RQ scoring, selective-prefilter handling, and separate exact refinement remain intact.
Please mark this PR with the breaking-change label.
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.
feat(index): add experimental quantized refinement results cache
Closes #8634.
Problem
Exact vector refinement reads original vectors from the dataset. On remote storage, these reads can dominate query
latency even though multi-bit RQ data is already available in the vector index.
Change
Add an explicit opt-in quantized refinement stage for flat IVF_RQ indexes.
When
quantized_refine_factoris configured:factor * kcandidates using Fast one-bit RQ scoring.kresults without reading original vectors for indexed candidates.Exact refinement remains a separate optional final stage and can be combined with quantized refinement.
The option is exposed through:
Scanner::quantized_refinequantized_refine_factorQuery.Builder.setQuantizedRefineFactorScope
Validation
Added coverage for: