Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Boost default scroll size to 1000 #1429

Merged
merged 1 commit into from
Feb 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/reference/asciidoc/core/configuration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,8 @@ available {es} node (based on the declaration of `es.nodes`, followed by the dis
`es.scroll.keepalive` (default 10m)::
The maximum duration of result scrolls between query requests.

`es.scroll.size` (default 50)::
Number of results/items returned by each individual per request.
`es.scroll.size` (default 1000)::
Number of results/items/documents returned per scroll request on each executor/worker/task.

added[2.2]
`es.scroll.limit` (default -1)::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public interface ConfigurationOptions {

/** Scroll size */
String ES_SCROLL_SIZE = "es.scroll.size";
String ES_SCROLL_SIZE_DEFAULT = "50";
String ES_SCROLL_SIZE_DEFAULT = "1000";

/** Scroll limit */
String ES_SCROLL_LIMIT = "es.scroll.limit";
Expand Down