You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/05/05 15:41:56 UTC

[GitHub] [arrow] ryanhaarmann opened a new issue #10251: `pyarrow.fs.S3FileSystem` pass extra kwargs i.e ACL

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:
users@infra.apache.org



[GitHub] [arrow] westonpace commented on issue #10251: `pyarrow.fs.S3FileSystem` pass extra kwargs i.e ACL

Posted by GitBox <gi...@apache.org>.
westonpace commented on issue #10251:
URL: https://github.com/apache/arrow/issues/10251#issuecomment-832975809


   There is no way to do this today but it sounds like a very reasonable feature to suggest.  In particular, it should be straightforward to pass a "default" ACL that gets applied to all files created by the filesystem.  Can you please create a JIRA?


-- 
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:
users@infra.apache.org



[GitHub] [arrow] ryanhaarmann commented on issue #10251: `pyarrow.fs.S3FileSystem` pass extra kwargs i.e ACL

Posted by GitBox <gi...@apache.org>.
ryanhaarmann commented on issue #10251:
URL: https://github.com/apache/arrow/issues/10251#issuecomment-836908501


   JIRA issue created
   https://issues.apache.org/jira/browse/ARROW-12719


-- 
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:
users@infra.apache.org



[GitHub] [arrow] kou closed issue #10251: `pyarrow.fs.S3FileSystem` pass extra kwargs i.e ACL

Posted by GitBox <gi...@apache.org>.
kou closed issue #10251:
URL: https://github.com/apache/arrow/issues/10251


   


-- 
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:
users@infra.apache.org



[GitHub] [arrow] kou commented on issue #10251: `pyarrow.fs.S3FileSystem` pass extra kwargs i.e ACL

Posted by GitBox <gi...@apache.org>.
kou commented on issue #10251:
URL: https://github.com/apache/arrow/issues/10251#issuecomment-837519422


   Thanks!


-- 
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:
users@infra.apache.org