fix: Add UI gRPC runtime dependencies#6530
Merged
franciscojavierarceo merged 1 commit intoJun 16, 2026
Merged
Conversation
Signed-off-by: Francisco Javier Arceo <farceo@redhat.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.
What changed
grpcio,grpcio-reflection, andgrpcio-health-checkinginto base Python package dependencies.Why
feast uinow mounts the REST registry routes. That path importsfeast.registry_server, which importsgrpc,grpc_health, andgrpc_reflectionat module import time. Infeast==0.64.1.dev6529, those packages are only installed with thegrpcioextra, so a plainpip install feast==0.64.1.dev6529fails to startfeast uiwithModuleNotFoundError.This keeps the default package install aligned with the runtime imports used by the UI.
Validation
python3.12 -m venv /tmp/feast-ui-grpc-deps-check && pip install .import grpcfrom grpc_health.v1 import healthfrom grpc_reflection.v1alpha import reflectionfrom feast.registry_server import RegistryServerfrom feast.ui_server import get_apptest_ui_runtime_grpc_dependencies_are_base_dependenciesgit diff --checkNote: local
pytestcollection in an ad hoc env was blocked by unrelated environment issues (miniomissing without test extras, then Python 3.12distutilsmissing throughpytest-timeout). CI should run with the repo's normal test environment.