Replies: 1 comment 5 replies
-
Hi @min-mwei! A few questions:
Daft recognizes a filepath ending with I.e. these are equivalent:
If instead you want Daft to find data recursively, you can use our daft.read_parquet("az://containerName/path/**/*.parquet", io_config=io_config) Let me know if this helps! |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi. Is there an example to list and read data from Azure blob? List, read, and ideally write.
I have some issues with the path scheme. For example, with Ray/ADLS, the pattern works "az://containerName/TopfolderPath"
ds = ray.data.read_parquet(
"az://containerName/path/",
filesystem=adlfs.AzureBlobFileSystem(account_name="x", account_key="y")
)
But this simple code with daft below gives a file not found error.
io_config = IOConfig(azure=AzureConfig(storage_account="x", access_key="y"))
daft.read_parquet("az://containerName/path/", io_config=io_config)
Thanks much
Beta Was this translation helpful? Give feedback.
All reactions