Replies: 1 comment 9 replies
-
|
In Daft, we actually have native read support for the major cloud vendors built in via Rust! Take a look at our S3 example: https://www.getdaft.io/projects/docs/en/latest/user_guide/integrations/aws.html |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Similar to pyarrow and polars, I want to define a local filesystem using
fsspec. How do I do that in daft? e.g. inpyarrow`filesystem_code = "xxx"
storage_options = {
"account_name": "xxx",
"account_host": "xxxxx.com"
}
fs = fsspec.filesystem(filesystem_code, **storage_options)
table2 = pq.read_table(local_file_path, filesystem=fs)`
can I do the same in daft ?
Beta Was this translation helpful? Give feedback.
All reactions