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

Method delete_feature_service

sdk/python/feast/feature_store.py:882–892  ·  view source on GitHub ↗

Deletes a feature service. Args: name: Name of feature service. Raises: FeatureServiceNotFoundException: The feature view could not be found.

(self, name: str)

Source from the content-addressed store, hash-verified

880 self.registry.apply_feature_view(fv, self.project)
881
882 def delete_feature_service(self, name: str):
883 """
884 Deletes a feature service.
885
886 Args:
887 name: Name of feature service.
888
889 Raises:
890 FeatureServiceNotFoundException: The feature view could not be found.
891 """
892 return self.registry.delete_feature_service(name, self.project)
893
894 def _should_use_plan(self):
895 """Returns True if plan and _apply_diffs should be used, False otherwise."""

Callers 2

applyMethod · 0.45
DeleteFeatureServiceMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected