ianmcook commented on issue #43384: URL: https://github.com/apache/arrow/issues/43384#issuecomment-2915086313
I'm not sure about writing, but you can read Parquet from a presigned URL by using Pyarrow with `fsspec` like this: ```py import pyarrow.parquet as pq import fsspec presigned_url = "https://mybucket.s3.us-east-1.amazonaws.com/myfile.parquet?..." with fsspec.open(presigned_url, mode="rb") as f: table = pq.read_table(f) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org