ahmarsuhail
ahmarsuhail
### Description of PR Adds in warn logs for things that will be removed in the upgrade. Also adds in documentation around the forthcoming changes. ### How was this patch...
### Description of PR Draft PR for first set of sdk upgrade changes ### How was this patch tested?
### Description of PR [JIRA](https://issues.apache.org/jira/browse/HADOOP-18481) This PR prevents logging of V1 Credential provider warning for `EnvironmentCredentialsProvider`. ### How was this patch tested? Ran an integration test, checked what's logged. No...
### Description of PR This adds in CSE back in back in. Also adds a new CSEMaterials class which will allow you set different key types (RSA, AES or KMS),...
### Problem: I created a 64KB (65536 bytes) with S3Encryption client, and then did ``` S3Client s3Client = S3Client.builder().region(Region.EU_WEST_1).build(); S3Client s3ECClient = S3EncryptionClient.builder() .kmsKeyId("xxx") .wrappedClient(s3Client) .wrappedAsyncClient(S3AsyncClient.builder().region(Region.EU_WEST_1).build()) .enableLegacyUnauthenticatedModes(true) .build(); ResponseInputStream inputStream...
### Description of PR This is the initial PR for readVectored(). TODO: * Add more tests in ITestS3AContractAnalyticsStreamVectoredRead Before this can be merged AAL with readVectored() will need to released,...
### Description of PR Relevant AAL PR: https://github.com/awslabs/analytics-accelerator-s3/pull/280 * S3A will pass in the span_id and operation_name when opening the stream with AAL. * AAL will attach these per request...
### Description of PR Adds support S3 CRT client. * Configuration mapping b/w clients is getting tricky, I moved endpoint/region resolution logic out so it can be re-used. * CRT...