我需要按Field1的值对所有记录进行分组,并为每个组计算Field2的最大值。因此,有什么方法可以使最大聚合作用在同一查询中的多个组上?
GET /yourindex/_search?search_type=count { "aggs": { "yourGroup": { "terms": { "field": "field1", "size": 10 }, "aggs": { "theMax": { "max": { "field": "field2" } } } } } }