0
{
"aggs":{
"nest_exams":{
"nested":{
"path": "exams"
},
"aggs":{
"exams":{
"filter" : {
"term": {
"exams.exam_id": 96690
}
},
"aggs":{
"nested_attempts":{
"nested":{
"path": "exams.attempts"
},
"aggs":{
"user_attempts":{
"terms":{
"field": "exams.attempts.user_id",
"size": 0
},
"aggs":{
"max_score":{
"max":{
"field": "exams.attempts.order_score"
}
}
}
}
}
}
}
}
}
}
}
你好,我有這個聚合查詢。問題是,即使我可以找到每個用戶的max_score,我也無法將聚合分給最大聚合器以查找此最佳分數的日期。Elasticsearch Aggregation Max Value
的嘗試已經user_id說明,order_score,DATE_START
我可以根據date_start對整個結果進行排序嗎? – Michalis