-
Through a discussion on the project's Slack, I learned how to write results from a Datafusion query to a Delta table, which can then be stored in a Delta Lake location on the file system. The key part of this process is demonstrated in the following code:
However, I am currently trying to write to an S3 location and have been unable to configure the How do I go about this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
in order for S3 to work you would need an url like |
Beta Was this translation helpful? Give feedback.
in order for S3 to work you would need an url like
s3://<bucket>/<path>
. In most cases, additional information is required, which is passed viawith_storage_options
to the builder. The available keys are documented in the object strore crate.