You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by GitBox <gi...@apache.org> on 2020/10/20 19:09:21 UTC

[GitHub] [incubator-pinot] fx19880617 opened a new issue #6161: Support ACL for pinot-s3 plugin

fx19880617 opened a new issue #6161:
URL: https://github.com/apache/incubator-pinot/issues/6161


   Provide ACL policy for the s3 bucket write.


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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] pradeepgv42 commented on issue #6161: Support ACL for pinot-s3 plugin

Posted by GitBox <gi...@apache.org>.
pradeepgv42 commented on issue #6161:
URL: https://github.com/apache/incubator-pinot/issues/6161#issuecomment-713080879


   I believe, in S3PinotFs, acls need to be set in put/copy object requests such that bucket owner is given full access to the objects created. Something like below, most likely this should fix the issue for cross account interactions:
   ```
   
   final AccessControlList acl = s3Client.getBucketAcl(bucket);
   acl.grantAllPermissions(new Grant(new CanonicalGrantee(acl.getOwner().getId()), Permission.FullControl));
   return acl 
   ```


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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] Aka-shi commented on issue #6161: Support ACL for pinot-s3 plugin

Posted by GitBox <gi...@apache.org>.
Aka-shi commented on issue #6161:
URL: https://github.com/apache/incubator-pinot/issues/6161#issuecomment-728938847


   @pradeepgv42 @fx19880617 I raised a PR for this. Can you review it? 


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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org