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

Method _should_use_plan

sdk/python/feast/feature_store.py:894–899  ·  view source on GitHub ↗

Returns True if plan and _apply_diffs should be used, False otherwise.

(self)

Source from the content-addressed store, hash-verified

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."""
896 # Currently only the local provider with sqlite online store supports plan and _apply_diffs.
897 return self.config.provider == "local" and (
898 self.config.online_store and self.config.online_store.type == "sqlite"
899 )
900
901 def _validate_all_feature_views(
902 self,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected