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

Method read_csv

sdk/python/feast/infra/ray_initializer.py:218–220  ·  view source on GitHub ↗

Read CSV files using standard Ray.

(self, path: Union[str, List[str]], **kwargs)

Source from the content-addressed store, hash-verified

216 return ray.data.read_parquet(path, **kwargs)
217
218 def read_csv(self, path: Union[str, List[str]], **kwargs) -> Any:
219 """Read CSV files using standard Ray."""
220 return ray.data.read_csv(path, **kwargs)
221
222 def read_json(self, path: Union[str, List[str]], **kwargs) -> Any:
223 """Read JSON/JSONL file(s)."""

Callers 4

_remoteMethod · 0.45
_try_artifactMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected