fix: Add remote registry client extra - #6697
Open
yaodong-shen wants to merge 1 commit into
Open
Conversation
Author
|
The implementation is ready and the branch is mergeable. Per the repository contribution guide, could a maintainer add the required |
yaodong-shen
force-pushed
the
fix/remote-registry-client-extra
branch
from
August 2, 2026 01:03
ca3823a to
9e9ee68
Compare
Signed-off-by: buduoqiu <[email protected]>
franciscojavierarceo
approved these changes
Aug 3, 2026
franciscojavierarceo
left a comment
Member
There was a problem hiding this comment.
The focused extra cleanly separates the client-only grpcio dependency and documents the installation path without changing the existing server extra. I found no blocking issue in the remote diff.
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.
What this PR does
Fixes #6666.
RemoteRegistryimportsgrpcunconditionally, butgrpciowas only available through the unrelated server-orientedgrpcioextra. Users installing a normal provider extra could therefore configureregistry_type: remoteand receiveModuleNotFoundErrorat runtime.This adds a focused
remoteoptional dependency containing onlygrpcioand documentspip install "feast[remote]"next to the remote registry configuration. The existinggrpcioextra remains unchanged for registry/feature-server deployments that need reflection and health-checking packages.Validation
pyproject.tomlanddocs/reference/registries/remote.md.Release notes
NONE