MCPcopy Index your code
hub / github.com/feast-dev/feast / _get_stream_feature_view

Method _get_stream_feature_view

sdk/python/feast/feature_store.py:785–796  ·  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

783 )
784
785 def _get_stream_feature_view(
786 self,
787 name: str,
788 hide_dummy_entity: bool = True,
789 allow_registry_cache: bool = False,
790 ) -> StreamFeatureView:
791 stream_feature_view = self.registry.get_stream_feature_view(
792 name, self.project, allow_cache=allow_registry_cache
793 )
794 if hide_dummy_entity and stream_feature_view.entities[0] == DUMMY_ENTITY_NAME:
795 stream_feature_view.entities = []
796 return stream_feature_view
797
798 def get_on_demand_feature_view(
799 self, name: str, allow_registry_cache: bool = False

Calls 1

Tested by

no test coverage detected