Does JEST Java client lib for elasticsearch support gzip (compression) for huge bulk operations? I'm uploading thousands of documents in one go.
Asked
Active
Viewed 464 times
1 Answers
1
Yes, you need to do two things:
set
http.compression: true
in yourelasticsearch.yml
configuration file and restart EScall
setRequestCompressionEnabled(true)
on your Jest client.

Val
- 207,596
- 13
- 358
- 360