查詢每個顏色的(汽車)平均價格
GET /cars/transactions/_search
{
"size" : 0,
"aggs": {
"colors": {
"terms": {
"field": "color"
},
"aggs": {
"avg_price": {
"avg": {
"field": "price"
}
}
}
}
}
}
我不知道為什么總覺得文檔里這句話很重要
實現(xiàn)
分成兩塊,地一塊terms分組帖蔓;第二塊aggs聚合矮瘟。
avg關(guān)鍵詞來表示對price進行平均計算,套到每個分組里塑娇。