jackye1995 commented on a change in pull request #4334:
URL: https://github.com/apache/iceberg/pull/4334#discussion_r827249469
##########
File path: aws/src/main/java/org/apache/iceberg/aws/s3/S3URI.java
##########
@@ -68,6 +69,34 @@
this.key = path;
}
+ /**
+ * Creates a new S3URI in the form of scheme://bucket/key?query#fragment
+ * <p>
+ * The URI supports any valid URI schemes to be backwards compatible with
s3a and s3n,
+ * and also allows users to use S3FileIO with other S3-compatible object
storage services like GCS.
+ *
+ * @param location fully qualified URI
+ * @param bucketToAccessPointMapping contains mapping of bucket to access
point
+ */
+ S3URI(String location, Map<String, String> bucketToAccessPointMapping) {
Review comment:
I think the original constructor can just call `S3URI(location,
ImmutableMap.of())`
--
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]