Getting code 100 when trying to index

Hi

I'm writing big data files to ES and from time to time getting HTTP
status code 100.

I've read that it means 'continue' but what does it means in context
of ES?

  • working with ES 0.19.

Thanks,

Yehuda

Its part of how HTTP works (and you should try and disable it, since its
more expensive). For large requests, curl, for example, by default will
send the just the header and then expect to get back 100 to send the
actually body of the request (and worse, it timesout on it, and if it does
not get 100 back, it will send it anyhow).

On Wed, Apr 4, 2012 at 9:19 AM, Yehuda Zargarov yz1583@gmail.com wrote:

Hi

I'm writing big data files to ES and from time to time getting HTTP
status code 100.

I've read that it means 'continue' but what does it means in context
of ES?

  • working with ES 0.19.

Thanks,

Yehuda