HADOOP-18330. S3AFileSystem removes Path when calling createS3Client (#4572)
Adds a new parameter object in s3ClientCreationParameters that holds the full s3a path URI Contributed by Ashutosh Pant
This commit is contained in:
parent
36cb8a6a2b
commit
fffb0bd6db
|
@ -888,6 +888,7 @@ public class S3AFileSystem extends FileSystem implements StreamCapabilities,
|
|||
S3ClientFactory.S3ClientCreationParameters parameters = null;
|
||||
parameters = new S3ClientFactory.S3ClientCreationParameters()
|
||||
.withCredentialSet(credentials)
|
||||
.withPathUri(name)
|
||||
.withEndpoint(endpoint)
|
||||
.withMetrics(statisticsContext.newStatisticsFromAwsSdk())
|
||||
.withPathStyleAccess(conf.getBoolean(PATH_STYLE_ACCESS, false))
|
||||
|
|
|
@ -115,6 +115,12 @@ public interface S3ClientFactory {
|
|||
*/
|
||||
private String userAgentSuffix = "";
|
||||
|
||||
/**
|
||||
* S3A path.
|
||||
* added in HADOOP-18330
|
||||
*/
|
||||
private URI pathUri;
|
||||
|
||||
/**
|
||||
* List of request handlers to include in the chain
|
||||
* of request execution in the SDK.
|
||||
|
@ -264,5 +270,26 @@ public interface S3ClientFactory {
|
|||
public Map<String, String> getHeaders() {
|
||||
return headers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the full s3 path.
|
||||
* added in HADOOP-18330
|
||||
* @return path URI
|
||||
*/
|
||||
public URI getPathUri() {
|
||||
return pathUri;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set full s3a path.
|
||||
* added in HADOOP-18330
|
||||
* @param value new value
|
||||
* @return the builder
|
||||
*/
|
||||
public S3ClientCreationParameters withPathUri(
|
||||
final URI value) {
|
||||
pathUri = value;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -176,6 +176,7 @@ public class ITestS3AEndpointRegion extends AbstractS3ATestBase {
|
|||
S3ClientFactory.S3ClientCreationParameters parameters
|
||||
= new S3ClientFactory.S3ClientCreationParameters()
|
||||
.withCredentialSet(new AnonymousAWSCredentialsProvider())
|
||||
.withPathUri(new URI("s3a://localhost/"))
|
||||
.withEndpoint(endpoint)
|
||||
.withMetrics(new EmptyS3AStatisticsContext()
|
||||
.newStatisticsFromAwsSdk());
|
||||
|
|
|
@ -589,6 +589,7 @@ public class ITestSessionDelegationInFileystem extends AbstractDelegationIT {
|
|||
S3ClientFactory.S3ClientCreationParameters parameters = null;
|
||||
parameters = new S3ClientFactory.S3ClientCreationParameters()
|
||||
.withCredentialSet(testingCreds)
|
||||
.withPathUri(new URI("s3a://localhost/"))
|
||||
.withEndpoint(DEFAULT_ENDPOINT)
|
||||
.withMetrics(new EmptyS3AStatisticsContext()
|
||||
.newStatisticsFromAwsSdk())
|
||||
|
|
Loading…
Reference in New Issue