JGynther commented on issue #452:
URL: https://github.com/apache/iceberg-python/issues/452#issuecomment-1955236592

   I found the same issue. However using Access Point S3 alias it seems to work 
just fine. Here is a minimal PyArrow example that reads a file:
   
   ```python
   from pyarrow import fs
   
   object = 
"iceberg/metadata/snap-8568433207443008232-1-e58de399-3ee1-45a6-b4df-a7c0e33bccbd.avro"
   uri = f"<name>-<number>-s3alias/{object}"
   
   s3 = fs.S3FileSystem(region="eu-north-1")
   with s3.open_input_file(uri) as file:
       print(file.readall())
   ```


-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to