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

Method apply_feature_service

sdk/python/feast/infra/registry/sql.py:902–911  ·  view source on GitHub ↗
(
        self, feature_service: FeatureService, project: str, commit: bool = True
    )

Source from the content-addressed store, hash-verified

900 conn.execute(update_stmt)
901
902 def apply_feature_service(
903 self, feature_service: FeatureService, project: str, commit: bool = True
904 ):
905 return self._apply_object(
906 feature_services,
907 project,
908 "feature_service_name",
909 feature_service,
910 "feature_service_proto",
911 )
912
913 def delete_data_source(self, name: str, project: str, commit: bool = True):
914 with self.write_engine.begin() as conn:

Callers 3

applyMethod · 0.45
ApplyFeatureServiceMethod · 0.45
apply_diff_to_registryFunction · 0.45

Calls 1

_apply_objectMethod · 0.95

Tested by

no test coverage detected