You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes when scrolling through a result set, Elasticsearch will throw an Exception such as this:
Elasticsearch\Common\Exceptions\BadRequest400Exception: {"error":{"root_cause":[{"type":"too_long_http_line_exception","reason":"An HTTP line is larger than 4096 bytes."}],"type":"too_long_http_line_exception","reason":"An HTTP line is larger than 4096 bytes."},"status":400}
This can be fixed by passing the scroll ID in the body instead of the URL.
The text was updated successfully, but these errors were encountered:
There has been a change in how query parameters are constructed for the Elasticsearch scroll API. We now directly pass the scrollId under the PARAM_BODY key, fixing a bug where Elasticsearch would abort the query due to an URL too long. Fixes#320.
Sometimes when scrolling through a result set, Elasticsearch will throw an Exception such as this:
This can be fixed by passing the scroll ID in the body instead of the URL.
The text was updated successfully, but these errors were encountered: