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
Similar to #62, The scroll API can be used to retrieve a large number of documents from Elasticsearch by issuing a search request with the scroll parameter, and using the scroll_id returned in a response to fetch the next batch of documents with a search request, continuing until all documents are retrieved.
Many of the existing Elasticsearch clients provide a "scroll helper" for this purpose. The helper can issue a search request, and continue to issue search requests until all documents are retrieved. The scroll can be sliced, allowing concurrent scrolls to be executed.
The Rust client should provide a similar, idiomatic way of helping consumers retrieve a large collection of documents.
The text was updated successfully, but these errors were encountered:
Similar to #62, The scroll API can be used to retrieve a large number of documents from Elasticsearch by issuing a search request with the
scroll
parameter, and using thescroll_id
returned in a response to fetch the next batch of documents with a search request, continuing until all documents are retrieved.Many of the existing Elasticsearch clients provide a "scroll helper" for this purpose. The helper can issue a search request, and continue to issue search requests until all documents are retrieved. The scroll can be sliced, allowing concurrent scrolls to be executed.
The Rust client should provide a similar, idiomatic way of helping consumers retrieve a large collection of documents.
The text was updated successfully, but these errors were encountered: