-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Add enabled/disabled toggle for feature views #6401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ntkathole
merged 30 commits into
feast-dev:master
from
rpathade:feat/feature-view-enabled-disabled-v2
May 23, 2026
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
85a18dc
feat: Add enabled/disabled toggle for feature views
rpathade 5e98c7f
feat: Add demo noteboooks for users
ntkathole f735cd2
feat: Add CLI enable/disable commands and registry metadata support
rpathade 426ae09
Added features
rpathade 365ecb4
fix(compute-engine/local): Honor field_mapping on join keys in dedup …
1fanwang 5b94d4d
feat: Add Prometheus gauges for FeatureStore installation telemetry (…
ntkathole b5297b8
docs: Rename Atlas Vector Search to MongoDB Vector Search and fix cod…
jvincent-mongodb 04d500c
feat(dynamodb): Use ProjectionExpression when requested_features is set
Jwrede c9e368b
fix(dynamodb): Fix mypy type for _build_projection_expression return
Jwrede de050ab
fix(bigquery): Enable list inference for parquet loads in offline_wri…
Jwrede 78fcd72
fix(trino): Clean up temporary entity tables after retrieval (#6381)
Jwrede 2014acd
feat(bigquery): Support DATE-type event timestamp columns (#6362)
Jwrede 5e69e5f
fix: Fixes for ray source
ntkathole 53e4a92
feat: Expose registry endpoints on feature server for MCP access
patelchaitany e9791b0
fix: Revert state propagation to always update in _update_metadata_fi…
rpathade f7fd0f8
fix: Recompile protos for protobuf 4.x compatibility and fix state ma…
rpathade a4f7ab8
feat: Add unit tests for state machine and clean up lazy imports in r…
rpathade 3aa8778
fix: Address review comments for feature view state management
rpathade e626433
fix: Resolve integration test failures in apply loop
rpathade 8130b63
fix: Resolve integration test failures in apply loop
rpathade 2b54bd0
Apply suggestion from @ntkathole
rpathade cb33b6d
fix: Resolve review comments for feature_store
rpathade f3b94eb
fix: Resolve review comments for feature_views.py
rpathade a4c85dc
Merge branch 'master' into feat/feature-view-enabled-disabled-v2
rpathade abb6a41
Merge remote-tracking branch 'origin/master' into feat/feature-view-e…
rpathade f4dd0a4
feat: Add FeatureStore methods and update describe for enabled/state
rpathade a3f65b0
Merge branch 'master' into feat/feature-view-enabled-disabled-v2
rpathade efd41a6
fix: Add type: ignore comments for mypy on BaseFeatureView attr access
rpathade 436a712
fix: Remove REST API endpoints for enable/disable/set-state (deferred…
rpathade 7110346
Merge remote-tracking branch 'origin/master' into feat/feature-view-e…
rpathade File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this needs validation, It's better to add Valid transitions maps so that user is not able to bypass or skip some state
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added _VALID_STATE_TRANSITIONS map and can_transition_to() validation in the set-state command. Invalid transitions are now rejected with a message showing allowed transitions.