ryanhaarmann opened a new issue #10251:
URL: https://github.com/apache/arrow/issues/10251


   Is there a way to set specific ACL args to the new written files via the 
S3FileSystem? We have a situation where the writer/read role groups do not have 
access unless specified during the write process. 
   
   Example of how we update with `s3fs`:
   ```python
   s3fs.S3FileSystem(
       s3_additional_kwargs={'ACL': 'bucket-owner-full-control'}
   )
   ``` 
   
   or with `boto`:
   ```python
   extra_args.update({"ACL": "bucket-owner-full-control"})
   boto3.s3.transfer.S3Transfer(...).upload_file(extra_args=extra_args)
   ```


-- 
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.

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


Reply via email to