-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Add a soft limit on the number of requested doc-value and script fields #26390
Labels
>enhancement
help wanted
adoptme
:Search/Search
Search-related issues that do not fall into other categories
Comments
jpountz
added
:Search/Search
Search-related issues that do not fall into other categories
help wanted
adoptme
>enhancement
labels
Aug 25, 2017
24 tasks
cbuescher
added a commit
to cbuescher/elasticsearch
that referenced
this issue
Sep 11, 2017
Requesting to many docvalue_fields in a search request can potentially be costly because it might incur a per-field per-document seek. This change introduces a soft limit on the number of fields that can be retrieved. The setting can be changed per index using the `index.max_docvalue_fields_search` setting. Relates to elastic#26390
cbuescher
added a commit
that referenced
this issue
Sep 13, 2017
Requesting to many docvalue_fields in a search request can potentially be costly because it might incur a per-field per-document seek. This change introduces a soft limit on the number of fields that can be retrieved. The setting can be changed per index using the `index.max_docvalue_fields_search` setting. Relates to #26390
cbuescher
added a commit
that referenced
this issue
Sep 13, 2017
Requesting to many docvalue_fields in a search request can potentially be costly because it might incur a per-field per-document seek. This change introduces a soft limit on the number of fields that can be retrieved. The setting can be changed per index using the `index.max_docvalue_fields_search` setting. Relates to #26390
cbuescher
added a commit
that referenced
this issue
Sep 13, 2017
Requesting to many docvalue_fields in a search request can potentially be costly because it might incur a per-field per-document seek. This change introduces a soft limit on the number of fields that can be retrieved. The setting can be changed per index using the `index.max_docvalue_fields_search` setting. Relates to #26390
cbuescher
added a commit
to cbuescher/elasticsearch
that referenced
this issue
Sep 13, 2017
Requesting to many script_fields in a search request can be costly because of script execution. This change introduces a soft limit on the number of script fields that are allowed per request. The setting can be changed per index using the index.max_script_fields setting. Relates to elastic#26390
cbuescher
added a commit
that referenced
this issue
Sep 13, 2017
Requesting to many script_fields in a search request can be costly because of script execution. This change introduces a soft limit on the number of script fields that are allowed per request. The setting can be changed per index using the index.max_script_fields setting. Relates to #26390
cbuescher
added a commit
that referenced
this issue
Sep 13, 2017
Requesting to many script_fields in a search request can be costly because of script execution. This change introduces a soft limit on the number of script fields that are allowed per request. The setting can be changed per index using the index.max_script_fields setting. Relates to #26390
cbuescher
added a commit
that referenced
this issue
Sep 13, 2017
Requesting to many script_fields in a search request can be costly because of script execution. This change introduces a soft limit on the number of script fields that are allowed per request. The setting can be changed per index using the index.max_script_fields setting. Relates to #26390
iverase
added a commit
to iverase/elasticsearch
that referenced
this issue
Aug 20, 2018
For consistency with stored_fields, docvalue_fields should support the use of wildcards. See also: elastic#26390 Closes elastic#26299
iverase
added a commit
that referenced
this issue
Aug 23, 2018
iverase
added a commit
that referenced
this issue
Aug 23, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
>enhancement
help wanted
adoptme
:Search/Search
Search-related issues that do not fall into other categories
Spin-off from #26299. Doc-value and script fields are costly since they might incur a per-field per-document seek, while stored fields only incur a per-document seek. So we should add a soft limit over the number of requested doc-value and script fields.
The text was updated successfully, but these errors were encountered: