1
在elasticsearch 1.5.0,我嘗試整理/使用scripted_metric結果排序聚集桶,但收到波紋管錯誤:腳本公制聚集訂購
AggregationExecutionException [無效條款聚集爲了路徑[custom_script。術語存儲桶只能在通過路徑內零個或多個單個存儲桶聚合構建的子聚合器路徑上排序,並且最終單個存儲桶或路徑末端的度量標準聚合可以通過任何方式解決這個問題?
我的查詢是這樣的:
"aggs": {
"mygroup": {
"terms": {
"field": "customername",
"order": {
"custom_script": "asc"
}
},
"aggs": {
"custom_script": {
"scripted_metric": {
...
}
}
}
}
}