forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The `reverse_nested` aggregation allows to aggregate on properties outside of the nested scope of a `nested` aggregation. Closes elastic#5507
- Loading branch information
Showing
14 changed files
with
837 additions
and
13 deletions.
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
115 changes: 115 additions & 0 deletions
115
docs/reference/search/aggregations/bucket/reverse-nested-aggregation.asciidoc
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 |
---|---|---|
@@ -0,0 +1,115 @@ | ||
[[search-aggregations-bucket-reverse-nested-aggregation]] | ||
=== Reverse nested | ||
|
||
A special single bucket aggregation that enables aggregating on parent docs from nested documents. Effectively this | ||
aggregation can break out of the nested block structure and link to other nested structures or the root document, | ||
which allows nesting other aggregations that aren't part of the nested object in a nested aggregation. | ||
|
||
The `reverse_nested` aggregation must be defined inside a `nested` aggregation. | ||
|
||
.Options: | ||
* `path` - Which defines to what nested object field should be joined back. The default is empty, | ||
which means that it joins back to the root / main document level. The path cannot contain a reference to | ||
a nested object field that falls outside the `nested` aggregation's nested structure a `reverse_nested` is in. | ||
|
||
For example, lets say we have an index for a ticket system which issues and comments. The comments are inlined into | ||
the issue documents as nested documents. The mapping could look like: | ||
|
||
[source,js] | ||
-------------------------------------------------- | ||
{ | ||
... | ||
"issue" : { | ||
"properties" : { | ||
"tags" : { "type" : "string" } | ||
"comments" : { <1> | ||
"type" : "nested" | ||
"properties" : { | ||
"username" : { "type" : "string", "index" : "not_analyzed" }, | ||
"comment" : { "type" : "string" } | ||
} | ||
} | ||
} | ||
} | ||
} | ||
-------------------------------------------------- | ||
|
||
<1> The `comments` is an array that holds nested documents under the `issue` object. | ||
|
||
The following aggregations will return the top commenters' username that have commented and per top commenter the top | ||
tags that issues have the commenter has commented to: | ||
|
||
[source,js] | ||
-------------------------------------------------- | ||
{ | ||
"query" : { | ||
"match" : { "name" : "led tv" } | ||
} | ||
"aggs" : { | ||
"comments" : { | ||
"nested" : { | ||
"path" : "comments" | ||
}, | ||
"aggs" : { | ||
"top_usernames" : { | ||
"terms" : { | ||
"field" : "comments.username" | ||
} | ||
}, | ||
"aggs" : { | ||
"comment_to_issue" : { | ||
"reverse_nested" : { <1> | ||
}, | ||
"aggs" : { | ||
"top_tags_per_comment" : { | ||
"terms" : { "field" : "tags" } | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
-------------------------------------------------- | ||
|
||
As you can see above, the the `reverse_nested` aggregation is put in to a `nested` aggregation as this is the only place | ||
in the dsl where the `reversed_nested` aggregation can be used. Its sole purpose is to join back to a parent doc higher | ||
up in the nested structure. | ||
|
||
<1> A `reverse_nested` aggregation that joins back to the root / main document level, because no `path` has been defined. | ||
Via the `path` option the `reverse_nested` aggregation can join back to a different level, if multiple layered nested | ||
object types have been defined in the mapping | ||
|
||
Possible response snippet: | ||
|
||
[source,js] | ||
-------------------------------------------------- | ||
{ | ||
"aggregations": { | ||
"comments": { | ||
"top_usernames": { | ||
"buckets" : [ | ||
{ | ||
"key" : "username_1", | ||
"doc_count" : 12, | ||
"comment_to_issue" : { | ||
"top_tags_per_comment" : { | ||
"buckets" : [ | ||
{ | ||
"key" : "tag1", | ||
"doc_count" : 9 | ||
}, | ||
... | ||
] | ||
} | ||
}, | ||
... | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
-------------------------------------------------- |
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
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
59 changes: 59 additions & 0 deletions
59
src/main/java/org/elasticsearch/search/aggregations/bucket/nested/InternalReverseNested.java
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Licensed to ElasticSearch and Shay Banon under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. ElasticSearch licenses this | ||
* file to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package org.elasticsearch.search.aggregations.bucket.nested; | ||
|
||
import org.elasticsearch.common.io.stream.StreamInput; | ||
import org.elasticsearch.search.aggregations.AggregationStreams; | ||
import org.elasticsearch.search.aggregations.InternalAggregations; | ||
import org.elasticsearch.search.aggregations.bucket.InternalSingleBucketAggregation; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* | ||
*/ | ||
public class InternalReverseNested extends InternalSingleBucketAggregation implements ReverseNested { | ||
|
||
public static final Type TYPE = new Type("reverse_nested"); | ||
|
||
public final static AggregationStreams.Stream STREAM = new AggregationStreams.Stream() { | ||
@Override | ||
public InternalReverseNested readResult(StreamInput in) throws IOException { | ||
InternalReverseNested result = new InternalReverseNested(); | ||
result.readFrom(in); | ||
return result; | ||
} | ||
}; | ||
|
||
public static void registerStream() { | ||
AggregationStreams.registerStream(STREAM, TYPE.stream()); | ||
} | ||
|
||
public InternalReverseNested() { | ||
} | ||
|
||
public InternalReverseNested(String name, long docCount, InternalAggregations aggregations) { | ||
super(name, docCount, aggregations); | ||
} | ||
|
||
@Override | ||
public Type type() { | ||
return TYPE; | ||
} | ||
|
||
} |
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
27 changes: 27 additions & 0 deletions
27
src/main/java/org/elasticsearch/search/aggregations/bucket/nested/ReverseNested.java
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.search.aggregations.bucket.nested; | ||
|
||
import org.elasticsearch.search.aggregations.bucket.SingleBucketAggregation; | ||
|
||
/** | ||
*/ | ||
public interface ReverseNested extends SingleBucketAggregation { | ||
} |
Oops, something went wrong.