(in prog): add factory, adaptors for indexing strategies#3
Merged
allen-munsch merged 4 commits intomainfrom Dec 10, 2025
Merged
(in prog): add factory, adaptors for indexing strategies#3allen-munsch merged 4 commits intomainfrom
allen-munsch merged 4 commits intomainfrom
Conversation
Signed-off-by: allen-munsch <james.a.munsch@gmail.com>
Signed-off-by: allen-munsch <james.a.munsch@gmail.com>
Signed-off-by: allen-munsch <james.a.munsch@gmail.com>
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.
Core Purpose:
The PR introduces a pluggable indexing strategy system that allows switching between different indexing methods, enabling:
Key Changes:
1. Strategy Pattern Architecture
Mosaic.Index.Strategybehaviour defining a common interfaceMosaic.Index.Strategy.Centroid- Wraps existing shard router logicMosaic.Index.Strategy.Quantized- New ring-based spatial partitioning2. Quantized Ring Implementation
PathEncoderMosaic.Index.Quantized.Cell)3. Configuration & Runtime Switching
index_strategyconfig option ("centroid"or"quantized")4. Migration Tools
Mosaic.Index.Migratorfor migrating between strategies5. Query Engine Integration
Mosaic.QueryEngineto use the active strategyindex_stateto maintain strategy-specific state6. Refactored Existing Components
Technical Details of Quantized Strategy:
How it works:
dims_per_leveldimensions intobinsbuckets"012/045/123")search_radiusof target cellsBenefits:
bins,dims_per_level,search_radiusWhat's "in prog" (in progress):
Impact: