Possible effects of not closing scroll

Hi,

I have the following setup. A java program, using ES6.0 high/low level libraries, it:

  • queries an ES2.2 cluster, using scrolling
  • creates new docs out of the 2.2 ones
  • indexes them into a ES6.0 cluster

Of course, writing to the 6.0 cluster is no issue. Reading off the 2.2 index mostly works too, but it fails when trying to clear the scroll:

       clearScrollRequest.addScrollId(scrollId);

Unable to parse response body for Response{requestLine=DELETE /_search/scroll HTTP/1.1, host=http://...:9200, response=HTTP/1.1 200 OK}

If I comment out this code it runs fine.

Now, I am tailing the 2.X index, so I run the scrolling query every min (long story...we are transitioning to 6.0 and this was a pragmatic way to keep the current setup working). Does it sound ok to run this without closing the scroll (remember, once a min...), or should I expect some issue ??

thanks

The rest Client is compatible only with the same major version of your nodes.

So you can't use rest 6.0 with elasticsearch 2.x nodes.
That's why you have this error message I think.

In that case, I'd use the low level layer to clear the scroll request.

yes, I am aware about it not being officially supported, my question was more about possible bad side effects of not clearing the scroll....I'l try with your suggestion, thanks

Bad effects:

It will hold the segments on disk as they are until the scroll is cleaned. Which means that even though some segment merges are happening, the "old" ones won't be removed until all locks are gone.

using the low level worked, thanks!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.