热门点击聚合组

时间:2016-04-03 12:20:11

标签: elasticsearch lucene

我正在使用top_hits_aggregation来获取用户上次访问过的文档。我想根据top_hits_aggregation的结果进行分组。

返回的样本行

NSString

}

我希望按字段" c"

按结果分组

预期

{
  "lastvisited_users": {
   "buckets": [
     { 
      "top_user_hits": {
        "hits": {
           "hits": [
              { _source: {"c": "s"}},
              { _source: {"c": "s,b"}}, 
              { _source: {"c": "s"}}, 
           ] 
         }
       }
     }
   ]
 }

我在生产中使用elasticsearch 1.7版。怎么做?

0 个答案:

没有答案