我正在使用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版。怎么做?