-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HADOOP-18234. Fix s3a access point xml examples #4309
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good - I see two other misses to address in this doc.
hadoop/hadoop-tools/hadoop-aws/src/site/markdown/tools/hadoop-aws/index.md
Lines 1618 to 1622 in 3d46c69
The `fs.s3a.accesspoint.required` property can also require all access to S3 to go through Access | |
Points. This has the advantage of increasing security inside a VPN / VPC as you only allow access | |
to known sources of data defined through Access Points. In case there is a need to access a bucket | |
directly (without Access Points) then you can use per bucket overrides to disable this setting on a | |
bucket by bucket basis i.e. `fs.s3a.{YOUR-BUCKET}.accesspoint.required`. |
hadoop/hadoop-tools/hadoop-aws/src/site/markdown/tools/hadoop-aws/index.md
Lines 1630 to 1634 in 3d46c69
<!-- Disable it on a per-bucket basis if needed --> | |
<property> | |
<name>fs.s3a.example-bucket.accesspoint.required</name> | |
<value>false</value> | |
</property> |
🎊 +1 overall
This message was automatically generated. |
Thanks @dannycjones for review. I have addressed your comment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, looks good to me!
🎊 +1 overall
This message was automatically generated. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
example changes are good. i think a whole paragraph and one of the examples can be cut. the original PR would let you declare an AP globally as well as locally, but the final implementation only supports per-bucket binding. there' s no need for the "you can also" section as it ~duplicates the paragraph and example above
hadoop-tools/hadoop-aws/src/site/markdown/tools/hadoop-aws/index.md
Outdated
Show resolved
Hide resolved
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
+1, merging |
Contributed by Ashutosh Gupta Change-Id: Ib99a4c7113d60690c1301d80cd5c27a43c463db0
Contributed by Ashutosh Gupta
Description of PR
Fixed s3a access point xml examples