1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
// Copyright 2012-2015 Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.
package elastic
// TermsAggregation is a multi-bucket value source based aggregation
// where buckets are dynamically built - one per unique value.
// See: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html
type TermsAggregation struct {
field string
script string
scriptFile string
lang string
params map[string]interface{}
subAggregations map[string]Aggregation
size *int
shardSize *int
requiredSize *int
minDocCount *int
shardMinDocCount *int
valueType string
order string
orderAsc bool
includePattern string
includeFlags *int
excludePattern string
excludeFlags *int
executionHint string
collectionMode string
showTermDocCountError *bool
includeTerms []string
excludeTerms []string
}
func NewTermsAggregation() TermsAggregation {
a := TermsAggregation{
params: make(map[string]interface{}),
subAggregations: make(map[string]Aggregation, 0),
includeTerms: make([]string, 0),
excludeTerms: make([]string, 0),
}
return a
}
func (a TermsAggregation) Field(field string) TermsAggregation {
a.field = field
return a
}
func (a TermsAggregation) Script(script string) TermsAggregation {
a.script = script
return a
}
func (a TermsAggregation) ScriptFile(scriptFile string) TermsAggregation {
a.scriptFile = scriptFile
return a
}
func (a TermsAggregation) Lang(lang string) TermsAggregation {
a.lang = lang
return a
}
func (a TermsAggregation) Param(name string, value interface{}) TermsAggregation {
a.params[name] = value
return a
}
func (a TermsAggregation) SubAggregation(name string, subAggregation Aggregation) TermsAggregation {
a.subAggregations[name] = subAggregation
return a
}
func (a TermsAggregation) Size(size int) TermsAggregation {
a.size = &size
return a
}
func (a TermsAggregation) RequiredSize(requiredSize int) TermsAggregation {
a.requiredSize = &requiredSize
return a
}
func (a TermsAggregation) ShardSize(shardSize int) TermsAggregation {
a.shardSize = &shardSize
return a
}
func (a TermsAggregation) MinDocCount(minDocCount int) TermsAggregation {
a.minDocCount = &minDocCount
return a
}
func (a TermsAggregation) ShardMinDocCount(shardMinDocCount int) TermsAggregation {
a.shardMinDocCount = &shardMinDocCount
return a
}
func (a TermsAggregation) Include(regexp string) TermsAggregation {
a.includePattern = regexp
return a
}
func (a TermsAggregation) IncludeWithFlags(regexp string, flags int) TermsAggregation {
a.includePattern = regexp
a.includeFlags = &flags
return a
}
func (a TermsAggregation) Exclude(regexp string) TermsAggregation {
a.excludePattern = regexp
return a
}
func (a TermsAggregation) ExcludeWithFlags(regexp string, flags int) TermsAggregation {
a.excludePattern = regexp
a.excludeFlags = &flags
return a
}
// ValueType can be string, long, or double.
func (a TermsAggregation) ValueType(valueType string) TermsAggregation {
a.valueType = valueType
return a
}
func (a TermsAggregation) Order(order string, asc bool) TermsAggregation {
a.order = order
a.orderAsc = asc
return a
}
func (a TermsAggregation) OrderByCount(asc bool) TermsAggregation {
// "order" : { "_count" : "asc" }
a.order = "_count"
a.orderAsc = asc
return a
}
func (a TermsAggregation) OrderByCountAsc() TermsAggregation {
return a.OrderByCount(true)
}
func (a TermsAggregation) OrderByCountDesc() TermsAggregation {
return a.OrderByCount(false)
}
func (a TermsAggregation) OrderByTerm(asc bool) TermsAggregation {
// "order" : { "_term" : "asc" }
a.order = "_term"
a.orderAsc = asc
return a
}
func (a TermsAggregation) OrderByTermAsc() TermsAggregation {
return a.OrderByTerm(true)
}
func (a TermsAggregation) OrderByTermDesc() TermsAggregation {
return a.OrderByTerm(false)
}
// OrderByAggregation creates a bucket ordering strategy which sorts buckets
// based on a single-valued calc get.
func (a TermsAggregation) OrderByAggregation(aggName string, asc bool) TermsAggregation {
// {
// "aggs" : {
// "genders" : {
// "terms" : {
// "field" : "gender",
// "order" : { "avg_height" : "desc" }
// },
// "aggs" : {
// "avg_height" : { "avg" : { "field" : "height" } }
// }
// }
// }
// }
a.order = aggName
a.orderAsc = asc
return a
}
// OrderByAggregationAndMetric creates a bucket ordering strategy which
// sorts buckets based on a multi-valued calc get.
func (a TermsAggregation) OrderByAggregationAndMetric(aggName, metric string, asc bool) TermsAggregation {
// {
// "aggs" : {
// "genders" : {
// "terms" : {
// "field" : "gender",
// "order" : { "height_stats.avg" : "desc" }
// },
// "aggs" : {
// "height_stats" : { "stats" : { "field" : "height" } }
// }
// }
// }
// }
a.order = aggName + "." + metric
a.orderAsc = asc
return a
}
func (a TermsAggregation) ExecutionHint(hint string) TermsAggregation {
a.executionHint = hint
return a
}
// Collection mode can be depth_first or breadth_first as of 1.4.0.
func (a TermsAggregation) CollectionMode(collectionMode string) TermsAggregation {
a.collectionMode = collectionMode
return a
}
func (a TermsAggregation) ShowTermDocCountError(showTermDocCountError bool) TermsAggregation {
a.showTermDocCountError = &showTermDocCountError
return a
}
func (a TermsAggregation) IncludeTerms(terms ...string) TermsAggregation {
a.includeTerms = append(a.includeTerms, terms...)
return a
}
func (a TermsAggregation) ExcludeTerms(terms ...string) TermsAggregation {
a.excludeTerms = append(a.excludeTerms, terms...)
return a
}
func (a TermsAggregation) Source() interface{} {
// Example:
// {
// "aggs" : {
// "genders" : {
// "terms" : { "field" : "gender" }
// }
// }
// }
// This method returns only the { "terms" : { "field" : "gender" } } part.
source := make(map[string]interface{})
opts := make(map[string]interface{})
source["terms"] = opts
// ValuesSourceAggregationBuilder
if a.field != "" {
opts["field"] = a.field
}
if a.script != "" {
opts["script"] = a.script
}
if a.scriptFile != "" {
opts["script_file"] = a.scriptFile
}
if a.lang != "" {
opts["lang"] = a.lang
}
if len(a.params) > 0 {
opts["params"] = a.params
}
// AggregationBuilder (SubAggregations)
if len(a.subAggregations) > 0 {
aggsMap := make(map[string]interface{})
source["aggregations"] = aggsMap
for name, aggregate := range a.subAggregations {
aggsMap[name] = aggregate.Source()
}
}
// TermsBuilder
if a.size != nil && *a.size >= 0 {
opts["size"] = *a.size
}
if a.shardSize != nil && *a.shardSize >= 0 {
opts["shard_size"] = *a.shardSize
}
if a.requiredSize != nil && *a.requiredSize >= 0 {
opts["required_size"] = *a.requiredSize
}
if a.minDocCount != nil && *a.minDocCount >= 0 {
opts["min_doc_count"] = *a.minDocCount
}
if a.shardMinDocCount != nil && *a.shardMinDocCount >= 0 {
opts["shard_min_doc_count"] = *a.shardMinDocCount
}
if a.showTermDocCountError != nil {
opts["show_term_doc_count_error"] = *a.showTermDocCountError
}
if a.collectionMode != "" {
opts["collect_mode"] = a.collectionMode
}
if a.valueType != "" {
opts["value_type"] = a.valueType
}
if a.order != "" {
o := make(map[string]interface{})
if a.orderAsc {
o[a.order] = "asc"
} else {
o[a.order] = "desc"
}
opts["order"] = o
}
if len(a.includeTerms) > 0 {
opts["include"] = a.includeTerms
}
if a.includePattern != "" {
if a.includeFlags == nil || *a.includeFlags == 0 {
opts["include"] = a.includePattern
} else {
p := make(map[string]interface{})
p["pattern"] = a.includePattern
p["flags"] = *a.includeFlags
opts["include"] = p
}
}
if len(a.excludeTerms) > 0 {
opts["exclude"] = a.excludeTerms
}
if a.excludePattern != "" {
if a.excludeFlags == nil || *a.excludeFlags == 0 {
opts["exclude"] = a.excludePattern
} else {
p := make(map[string]interface{})
p["pattern"] = a.excludePattern
p["flags"] = *a.excludeFlags
opts["exclude"] = p
}
}
if a.executionHint != "" {
opts["execution_hint"] = a.executionHint
}
return source
}
|