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

Method teardown

sdk/python/feast/feature_store.py:1668–1677  ·  view source on GitHub ↗

Tears down all local and cloud resources for the feature store.

(self)

Source from the content-addressed store, hash-verified

1666 warnings.warn(f"Failed to emit OpenLineage apply events: {e}")
1667
1668 def teardown(self):
1669 """Tears down all local and cloud resources for the feature store."""
1670 tables: List[BaseFeatureView] = []
1671 tables.extend(self.list_feature_views())
1672 tables.extend(self.list_label_views())
1673
1674 entities = self.list_entities()
1675
1676 self._get_provider().teardown_infra(self.project, tables, entities) # type: ignore[arg-type]
1677 self.registry.teardown()
1678
1679 def get_historical_features(
1680 self,

Callers 4

teardownFunction · 0.95
test_end_to_endFunction · 0.95
local_repoMethod · 0.95
run_demoFunction · 0.95

Calls 5

list_feature_viewsMethod · 0.95
list_label_viewsMethod · 0.95
list_entitiesMethod · 0.95
_get_providerMethod · 0.95
teardown_infraMethod · 0.45

Tested by 2

test_end_to_endFunction · 0.76
run_demoFunction · 0.76