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