-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Shrink slow log for has_child query #83870
Merged
elasticsearchmachine
merged 2 commits into
elastic:master
from
nik9000:shorter_has_child
Feb 14, 2022
+93
−9
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ | |
import org.elasticsearch.index.query.WrapperQueryBuilder; | ||
import org.elasticsearch.index.similarity.SimilarityService; | ||
import org.elasticsearch.join.ParentJoinPlugin; | ||
import org.elasticsearch.join.query.HasChildQueryBuilder.LateParsingQuery; | ||
import org.elasticsearch.plugins.Plugin; | ||
import org.elasticsearch.search.sort.FieldSortBuilder; | ||
import org.elasticsearch.search.sort.SortOrder; | ||
|
@@ -55,7 +56,6 @@ | |
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import static org.elasticsearch.join.query.HasChildQueryBuilder.LateParsingQuery; | ||
import static org.elasticsearch.join.query.JoinQueryBuilders.hasChildQuery; | ||
import static org.elasticsearch.xcontent.XContentFactory.jsonBuilder; | ||
import static org.hamcrest.CoreMatchers.containsString; | ||
|
@@ -245,7 +245,14 @@ public void testFromJson() throws IOException { | |
} | ||
}"""; | ||
HasChildQueryBuilder queryBuilder = (HasChildQueryBuilder) parseQuery(query); | ||
checkGeneratedJson(query, queryBuilder); | ||
checkGeneratedJson( | ||
/* | ||
* Ignoring unampped is the default and we don't dump it and can't | ||
* change it if we're going to use inner_hits. | ||
*/ | ||
query.replaceFirst("\"ignore_unmapped\" : false,", ""), | ||
queryBuilder | ||
); | ||
assertEquals(query, queryBuilder.maxChildren(), 1217235442); | ||
assertEquals(query, queryBuilder.minChildren(), 883170873); | ||
assertEquals(query, queryBuilder.boost(), 2.0f, 0.0f); | ||
|
@@ -259,6 +266,74 @@ public void testFromJson() throws IOException { | |
assertEquals(query, queryBuilder.innerHit(), expected); | ||
} | ||
|
||
public void testParseDefaultsRemoved() throws IOException { | ||
String query = """ | ||
{ | ||
"has_child" : { | ||
"query" : { | ||
"range" : { | ||
"mapped_string" : { | ||
"gte" : "agJhRET", | ||
"lte" : "zvqIq", | ||
"boost" : 1.0 | ||
} | ||
} | ||
}, | ||
"type" : "child", | ||
"score_mode" : "none", | ||
"min_children" : 1, | ||
"max_children" : MAX_CHILDREN, | ||
"ignore_unmapped" : false, | ||
"boost" : 1.0, | ||
"inner_hits" : { | ||
"name" : "inner_hits_name", | ||
"ignore_unmapped" : false, | ||
"from" : 0, | ||
"size" : 100, | ||
"version" : false, | ||
"seq_no_primary_term" : false, | ||
"explain" : false, | ||
"track_scores" : false, | ||
"sort" : [ { | ||
"mapped_string" : { | ||
"order" : "asc" | ||
} | ||
} ] | ||
} | ||
} | ||
}""".replaceAll("MAX_CHILDREN", Integer.toString(Integer.MAX_VALUE)); | ||
checkGeneratedJson(""" | ||
{ | ||
"has_child" : { | ||
"query" : { | ||
"range" : { | ||
"mapped_string" : { | ||
"gte" : "agJhRET", | ||
"lte" : "zvqIq", | ||
"boost" : 1.0 | ||
} | ||
} | ||
}, | ||
"type" : "child", | ||
"inner_hits" : { | ||
"name" : "inner_hits_name", | ||
"ignore_unmapped" : false, | ||
"from" : 0, | ||
"size" : 100, | ||
"version" : false, | ||
"seq_no_primary_term" : false, | ||
"explain" : false, | ||
"track_scores" : false, | ||
"sort" : [ { | ||
"mapped_string" : { | ||
"order" : "asc" | ||
} | ||
} ] | ||
} | ||
} | ||
}""", parseQuery(query)); | ||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❤️ text blocks |
||
public void testToQueryInnerQueryType() throws IOException { | ||
SearchExecutionContext searchExecutionContext = createSearchExecutionContext(); | ||
HasChildQueryBuilder hasChildQueryBuilder = hasChildQuery(CHILD_DOC, new IdsQueryBuilder().addIds("id"), ScoreMode.None); | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/unampped/unmapped/