MCPcopy
hub / github.com/feast-dev/feast / _get_feature_view

Method _get_feature_view

sdk/python/feast/feature_store.py:740–751  ·  view source on GitHub ↗
(
        self,
        name: str,
        hide_dummy_entity: bool = True,
        allow_registry_cache: bool = False,
    )

Source from the content-addressed store, hash-verified

738 return self._get_feature_view(name, allow_registry_cache=allow_registry_cache)
739
740 def _get_feature_view(
741 self,
742 name: str,
743 hide_dummy_entity: bool = True,
744 allow_registry_cache: bool = False,
745 ) -> FeatureView:
746 feature_view = self.registry.get_feature_view(
747 name, self.project, allow_cache=allow_registry_cache
748 )
749 if hide_dummy_entity and feature_view.entities[0] == DUMMY_ENTITY_NAME:
750 feature_view.entities = []
751 return feature_view
752
753 def list_feature_view_versions(self, name: str) -> List[Dict[str, Any]]:
754 """

Callers 4

get_feature_viewMethod · 0.95
_materialize_odfvMethod · 0.95

Calls 1

get_feature_viewMethod · 0.45

Tested by

no test coverage detected