{{ message }}
feat: Add versioning support to Milvus online store#6330
Merged
franciscojavierarceo merged 4 commits intoApr 28, 2026
Merged
Conversation
ntkathole
reviewed
Apr 25, 2026
Signed-off-by: makinzm <nozomi.maki.da@gmail.com>
…online_store/milvus.py Signed-off-by: makinzm <nozomi.maki.da@gmail.com>
Signed-off-by: makinzm <nozomi.maki.da@gmail.com>
Signed-off-by: makinzm <nozomi.maki.da@gmail.com>
5fad6e8 to
3f2989a
Compare
April 28, 2026 11:26
ntkathole
approved these changes
Apr 28, 2026
Hide details
View details
franciscojavierarceo
merged commit
3268ced
into
feast-dev:master
Apr 28, 2026
33 of 35 checks passed
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
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.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.
What this PR does / why we need it:
Adds feature view versioning support to the Milvus online store. When
enable_online_feature_view_versioningis enabled in the registry config, the Milvus collection name now includes a version suffix (e.g.project_driver_stats_v2), allowing version-qualified feature references (e.g.driver_stats@v2:trips_today) to resolve to the correct versioned data.Changes:
_table_id()inmilvus.pyto acceptenable_versioningand delegate to the sharedcompute_table_id()helper (same pattern as SQLite, Redis, PostgreSQL, etc.)_table_idto passconfig.registry.enable_online_feature_view_versioningMilvusOnlineStoreto the supported types list in_check_versioned_read_support()so versioned reads no longer raiseVersionedOnlineReadNotSupportedWhich issue(s) this PR fixes:
Fixes #6177
Checks
git commit -s)Testing Strategy
Misc
Implementation follows the existing pattern from
sqlite.pyanddynamodb.py. Thecompute_table_id()helper inhelpers.pyhandles the version suffix logic, so no additional logic was needed in the Milvus store itself.