Elasticsearch嵌套聚合

 Elasticserch在新版本中支持聚合操做,而聚合操做也能夠嵌套使用,方法以下:curl

curl -XGET 10.4.44.19:9200/test/test/_search?pretty -d ' { "aggs":{ "color_type_max":{ "terms":{ "field": "color" }, "aggs":{ "max_age": { "max": { "field" : "age" } } } }, "color_type_min":{ "terms":{ "field": "color" }, "aggs":{ "min_age": { "min": { "field" : "age" } } } } } }'

執行命令以下:url

相關文章
相關標籤/搜索