2013-08-28 19:24:34 -04:00
|
|
|
[[query-dsl-has-child-query]]
|
|
|
|
=== Has Child Query
|
|
|
|
|
|
|
|
The `has_child` query works the same as the
|
|
|
|
<<query-dsl-has-child-filter,has_child>> filter,
|
|
|
|
by automatically wrapping the filter with a
|
|
|
|
<<query-dsl-constant-score-query,constant_score>>
|
|
|
|
(when using the default score type). It has the same syntax as the
|
|
|
|
<<query-dsl-has-child-filter,has_child>> filter:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"has_child" : {
|
|
|
|
"type" : "blog_tag",
|
|
|
|
"query" : {
|
|
|
|
"term" : {
|
|
|
|
"tag" : "something"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
An important difference with the `top_children` query is that this query
|
|
|
|
is always executed in two iterations whereas the `top_children` query
|
|
|
|
can be executed in one or more iteration. When using the `has_child`
|
|
|
|
query the `total_hits` is always correct.
|
|
|
|
|
|
|
|
[float]
|
|
|
|
==== Scoring capabilities
|
|
|
|
|
2013-09-03 15:27:49 -04:00
|
|
|
The `has_child` also has scoring support. The
|
2014-09-17 16:33:05 -04:00
|
|
|
supported score types are `min`, `max`, `sum`, `avg` or `none`. The default is
|
2013-08-28 19:24:34 -04:00
|
|
|
`none` and yields the same behaviour as in previous versions. If the
|
|
|
|
score type is set to another value than `none`, the scores of all the
|
|
|
|
matching child documents are aggregated into the associated parent
|
2014-05-05 12:30:12 -04:00
|
|
|
documents. The score type can be specified with the `score_mode` field
|
2013-08-28 19:24:34 -04:00
|
|
|
inside the `has_child` query:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"has_child" : {
|
|
|
|
"type" : "blog_tag",
|
2014-05-05 12:30:12 -04:00
|
|
|
"score_mode" : "sum",
|
2013-08-28 19:24:34 -04:00
|
|
|
"query" : {
|
|
|
|
"term" : {
|
|
|
|
"tag" : "something"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
2014-05-30 13:17:52 -04:00
|
|
|
[float]
|
|
|
|
==== Min/Max Children
|
|
|
|
|
|
|
|
The `has_child` query allows you to specify that a minimum and/or maximum
|
|
|
|
number of children are required to match for the parent doc to be considered
|
|
|
|
a match:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"has_child" : {
|
|
|
|
"type" : "blog_tag",
|
|
|
|
"score_mode" : "sum",
|
|
|
|
"min_children": 2, <1>
|
|
|
|
"max_children": 10, <1>
|
|
|
|
"query" : {
|
|
|
|
"term" : {
|
|
|
|
"tag" : "something"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
<1> Both `min_children` and `max_children` are optional.
|
|
|
|
|
|
|
|
The `min_children` and `max_children` parameters can be combined with
|
|
|
|
the `score_mode` parameter.
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[float]
|
|
|
|
==== Memory Considerations
|
|
|
|
|
2014-09-17 16:33:05 -04:00
|
|
|
In order to support parent-child joins, all of the (string) parent IDs
|
|
|
|
must be resident in memory (in the <<index-modules-fielddata,field data cache>>.
|
|
|
|
Additionaly, every child document is mapped to its parent using a long
|
2014-06-21 10:32:29 -04:00
|
|
|
value (approximately). It is advisable to keep the string parent ID short
|
|
|
|
in order to reduce memory usage.
|
|
|
|
|
|
|
|
You can check how much memory is being used by the ID cache using the
|
|
|
|
<<indices-stats,indices stats>> or <<cluster-nodes-stats,nodes stats>>
|
|
|
|
APIS, eg:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
curl -XGET "http://localhost:9200/_stats/id_cache?pretty&human"
|
|
|
|
--------------------------------------------------
|