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
The Scrolling functionality of Elasticsearch is used to paginate over many documents in a bulk manner, such as exporting
220
-
all the documents belonging to a single user. It is more efficient than regular search because it doesn't need to maintain
221
-
an expensive priority queue ordering the documents.
238
+
The scrolling functionality of {es} is used to paginate over many documents in a
239
+
bulk manner, such as exporting all the documents belonging to a single user. It
240
+
is more efficient than regular search because it doesn't need to maintain an
241
+
expensive priority queue ordering the documents.
222
242
223
-
Scrolling works by maintaining a "point in time" snapshot of the index which is then used to page over.
224
-
This window allows consistent paging even if there is background indexing/updating/deleting. First, you execute a search
225
-
request with `scroll` enabled. This returns a "page" of documents, and a scroll_id which is used to continue
226
-
paginating through the hits.
243
+
Scrolling works by maintaining a "point in time" snapshot of the index which is
244
+
then used to page over. This window allows consistent paging even if there is
245
+
background indexing/updating/deleting. First, you execute a search request with
246
+
`scroll` enabled. This returns a "page" of documents, and a `scroll_id` which is
247
+
used to continue paginating through the hits.
227
248
228
-
More details about scrolling can be found in the https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-scroll[Link: reference documentation].
0 commit comments