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

Method delete_feature_view

sdk/python/feast/feature_store.py:832–842  ·  view source on GitHub ↗

Deletes a feature view of any kind (FeatureView, OnDemandFeatureView, StreamFeatureView). Args: name: Name of feature view. Raises: FeatureViewNotFoundException: The feature view could not be found.

(self, name: str)

Source from the content-addressed store, hash-verified

830 return self.registry.get_data_source(name, self.project)
831
832 def delete_feature_view(self, name: str):
833 """
834 Deletes a feature view of any kind (FeatureView, OnDemandFeatureView, StreamFeatureView).
835
836 Args:
837 name: Name of feature view.
838
839 Raises:
840 FeatureViewNotFoundException: The feature view could not be found.
841 """
842 return self.registry.delete_feature_view(name, self.project)
843
844 def enable_feature_view(self, name: str):
845 """

Callers 2

applyMethod · 0.45
DeleteFeatureViewMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected