GCHQDeveloper028 commented on PR #1275:
URL: 
https://github.com/apache/datafusion-python/pull/1275#issuecomment-3410914703

   > Since we don't currently have a way to test this in our CI, have you been 
able to test this change against files stored in S3?
   
   Sorry, yes I have tested this with a script roughly like:
   ```python
   object_store = AmazonS3(
     "example-bucket",
     access_key_id="xxx",
     secret_access_key="yyy",
     session_token="zzz"
   )
   
   ctx = SessionContext()
   ctx.register_object_store("s3://",  object_store)
   ctx.read_csv("s3://example-bucket/test.csv").show()
   ```
   
   which worked as expected (and failed without session_token being set).


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to