Hi everyone,
I'm running into issues with retrieving results using Paginate search results | Elasticsearch Guide [8.10] | Elastic and preserving the sorted order across the whole data set.
I need to pull lots of document IDs back and I need them to be sorted. With slice-scroll, the whole set is divided into multiple slices and results are coming back sorted within each slice, but when they are put together in a single list, it look like this: ...,ZZO,ZZQ,ZZR,002,004,006,... - this shows where one slice ends and another starts.
I'm using a point-in-time search with slicing.
Does someone know if this is an expected behavior for the point-in-time search with slicing?