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

Method apply_entity

sdk/python/feast/infra/registry/remote.py:164–168  ·  view source on GitHub ↗
(self, entity: Entity, project: str, commit: bool = True)

Source from the content-addressed store, hash-verified

162 self.channel.close()
163
164 def apply_entity(self, entity: Entity, project: str, commit: bool = True):
165 request = RegistryServer_pb2.ApplyEntityRequest(
166 entity=entity.to_proto(), project=project, commit=commit
167 )
168 self.stub.ApplyEntity(request)
169
170 def delete_entity(self, name: str, project: str, commit: bool = True):
171 request = RegistryServer_pb2.DeleteEntityRequest(

Callers

nothing calls this directly

Calls 2

to_protoMethod · 0.45
ApplyEntityMethod · 0.45

Tested by

no test coverage detected