MCPcopy Create free account
hub / github.com/feast-dev/feast / size_bytes

Method size_bytes

sdk/python/feast/infra/ray_shared_utils.py:193–201  ·  view source on GitHub ↗

Execute size_bytes remotely and return result.

(self)

Source from the content-addressed store, hash-verified

191 return ray.get(result_ref)
192
193 def size_bytes(self) -> int:
194 """Execute size_bytes remotely and return result."""
195
196 @ray.remote
197 def _remote_size_bytes(dataset):
198 return dataset.size_bytes()
199
200 result_ref = _remote_size_bytes.remote(self._dataset_ref)
201 return ray.get(result_ref)
202
203 def __getattr__(self, name):
204 """Catch any method calls that we haven't explicitly implemented."""

Callers 5

_remote_size_bytesMethod · 0.80
executeMethod · 0.80

Calls 1

getMethod · 0.80

Tested by

no test coverage detected