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