我遇到了同样的问题,而解决问题的方法是在docs得分上引入子汇总。然后在我的外部聚合中,我按max_score聚合的名称排序。
GET /my-index/my-type/_search{ "query": { "bool" : { "should" : [ { "match" : { "searchTerm" : { "query" : "style", "type" : "boolean" } } }, { "flt_field" : { "searchTerm" : { "like_text" : "style" } } }] } }, "aggs": { "group_by_target_url": { "terms": { "field": "targetUrl", "order": { "max_score": "desc" } }, "aggs": { "max_score": { "max": { "script": "doc.score" } } } } } }我遵循了此链接上的指示:
http://www.elasticsearch.org/guide/zh-
CN/elasticsearch/reference/current/search-aggregations-bucket-terms-
aggregation.html



