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