|
@@ -23,6 +23,9 @@ import org.apache.hadoop.fs.s3a.Constants;
|
|
|
import org.apache.hadoop.fs.s3a.S3AEncryptionMethods;
|
|
|
import org.apache.hadoop.fs.s3a.S3ATestUtils;
|
|
|
|
|
|
+import static org.apache.hadoop.fs.s3a.Constants.SERVER_SIDE_ENCRYPTION_ALGORITHM;
|
|
|
+import static org.apache.hadoop.fs.s3a.Constants.SERVER_SIDE_ENCRYPTION_KEY;
|
|
|
+import static org.apache.hadoop.fs.s3a.S3ATestUtils.removeBaseAndBucketOverrides;
|
|
|
import static org.apache.hadoop.fs.s3a.S3ATestUtils.skipIfEncryptionTestsDisabled;
|
|
|
|
|
|
/**
|
|
@@ -45,6 +48,8 @@ public class ITestS3AHugeFilesSSECDiskBlocks
|
|
|
@Override
|
|
|
protected Configuration createScaleConfiguration() {
|
|
|
Configuration conf = super.createScaleConfiguration();
|
|
|
+ removeBaseAndBucketOverrides(conf, SERVER_SIDE_ENCRYPTION_KEY,
|
|
|
+ SERVER_SIDE_ENCRYPTION_ALGORITHM);
|
|
|
S3ATestUtils.disableFilesystemCaching(conf);
|
|
|
conf.set(Constants.SERVER_SIDE_ENCRYPTION_ALGORITHM,
|
|
|
getSSEAlgorithm().getMethod());
|