Skip to content

Commit e98cf15

Browse files
Jon Dalbergestolfo
Jon Dalberg
authored andcommitted
Add a composite aggregation
1 parent 71999a4 commit e98cf15

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Licensed to Elasticsearch B.V. under one or more contributor
2+
# license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright
4+
# ownership. Elasticsearch B.V. licenses this file to you under
5+
# the Apache License, Version 2.0 (the "License"); you may
6+
# not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
module Elasticsearch
19+
module DSL
20+
module Search
21+
module Aggregations
22+
#
23+
# A multi-bucket aggregation that creates composite buckets from different sources.
24+
#
25+
# @example
26+
#
27+
# search do
28+
# aggregation :things do
29+
# composite do
30+
# size 2000
31+
# sources [
32+
# { thing1: { terms: { field: 'thing1.field1' } } },
33+
# { thing2: { terms: { field: 'thing2.field2' } } }
34+
# ]
35+
# after after_key
36+
# end
37+
# end
38+
# end
39+
#
40+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html
41+
#
42+
class Composite
43+
include BaseAggregationComponent
44+
45+
option_method :size
46+
option_method :sources
47+
option_method :after
48+
49+
def to_hash(_options={})
50+
super
51+
# remove :after if no value is given
52+
@hash[self.name.to_sym].delete(:after) if @hash[self.name.to_sym][:after].nil?
53+
54+
@hash
55+
end
56+
end
57+
end
58+
end
59+
end
60+
end
61+
end

0 commit comments

Comments
 (0)