Add a cluster setting to disallow expensive queries (#51385)#52279
Merged
matriv merged 3 commits intoelastic:7.xfrom Feb 12, 2020
Merged
Add a cluster setting to disallow expensive queries (#51385)#52279matriv merged 3 commits intoelastic:7.xfrom
matriv merged 3 commits intoelastic:7.xfrom
Conversation
Add a new cluster setting `search.allow_expensive_queries` which by default is `true`. If set to `false`, certain queries that have usually slow performance cannot be executed and an error message is returned. - Queries that need to do linear scans to identify matches: - Script queries - Queries that have a high up-front cost: - Fuzzy queries - Regexp queries - Prefix queries (without index_prefixes enabled - Wildcard queries - Range queries on text and keyword fields - Joining queries - HasParent queries - HasChild queries - ParentId queries - Nested queries - Queries on deprecated 6.x geo shapes (using PrefixTree implementation) - Queries that may have a high per-document cost: - Script score queries - Percolate queries Closes: elastic#29050 (cherry picked from commit a8b39ed)
Collaborator
|
Pinging @elastic/es-search (:Search/Search) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a new cluster setting
search.allow_expensive_querieswhich bydefault is
true. If set tofalse, certain queries that haveusually slow performance cannot be executed and an error message
is returned.
Closes: #29050
(cherry picked from commit a8b39ed)