GZIP Request and Response Configuration
Open
feature-request
p2
- Dominant language
- Java
- Stars
- 2.6k
- Forks
- 1k
- Avg merge
- 2d 9h
- Merged PRs (30d)
- 51
Description
Here is how I create a client:
```
AthenaClient
.builder()
.region(Region.of(environment.aws.region))
.credentialsProvider(DefaultCredentialsProvider.create())
.overrideConfiguration {
it.apiCallTimeout(Duration.ofMillis(environment.athena.executionTimeout.toLong()))
// it.gzipEnabled(true)
// it.totalExecutionTimeout(Duration.ofMillis(environment.athena.executionTimeout.toLong()))
}
.build()
```
Previously I could use the `gzipEnabled` property to enable gzip encoding, it is absent now. Can you give me an example of setting it up?
Contributor guide
Assessment
This issue has not been assessed yet.