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

Method delete_entity

sdk/python/feast/infra/registry/sql.py:599–602  ·  view source on GitHub ↗
(self, name: str, project: str, commit: bool = True)

Source from the content-addressed store, hash-verified

597 )
598
599 def delete_entity(self, name: str, project: str, commit: bool = True):
600 return self._delete_object(
601 entities, name, project, "entity_name", EntityNotFoundException
602 )
603
604 def delete_feature_view(self, name: str, project: str, commit: bool = True):
605 with self.write_engine.begin() as conn:

Callers 4

applyMethod · 0.45
DeleteEntityMethod · 0.45
apply_diff_to_registryFunction · 0.45

Calls 1

_delete_objectMethod · 0.95