## 查詢所有
GET /poem/_search
{"from":0,"size":50,"query":{"match_all":{}}}
參考文章
八、排序
GET /索引庫名/_search
{"query":{"bool":{"filter":[{"range":{"price":{"gte":2699,"lte":4999}}}]}},"sort":[{"price":{"order":"desc"}},{"_id":{"order":"asc"}}]}
PUT /cars
{"settings":{"number_of_shards":1,"number_of_replicas":0},"mappings":{"properties":{"color":{"type":"keyword"},"make":{"type":"keyword"}}}}
批量添加數(shù)據(jù)
POST /cars/_bulk
{"index":{}}{"price":10000,"color":"red","make":"honda","sold":"2014-10-28"}{"index":{}}{"price":20000,"color":"red","make":"honda","sold":"2014-11-05"}{"index":{}}{"price":30000,"color":"green","make":"ford","sold":"2014-05-18"}{"index":{}}{"price":15000,"color":"blue","make":"toyota","sold":"2014-07-02"}{"index":{}}{"price":12000,"color":"green","make":"toyota","sold":"2014-08-19"}{"index":{}}{"price":20000,"color":"red","make":"honda","sold":"2014-11-05"}{"index":{}}{"price":80000,"color":"red","make":"bmw","sold":"2014-01-01"}{"index":{}}{"price":25000,"color":"blue","make":"ford","sold":"2014-02-12"}
聚合為桶
GET /cars/_search
{"aggs":{"color":{"terms":{"field":"color"}}}}
桶內度量
GET /cars/_search
{"size":0,"aggs":{"color":{"terms":{"field":"color"},"aggs":{"avg_price":{"avg":{"field":"price"}}}}}}
桶內嵌套桶
GET /cars/_search
{"size":0,"aggs":{"color":{"terms":{"field":"color"},"aggs":{"avg_price":{"avg":{"field":"price"}},"mark":{"terms":{"field":"make"}}}}}}
階梯分組 對價格進行階梯分組,最小數(shù)量為1才顯示
GET /cars/_search
{"size":0,"aggs":{"price_histogram":{"histogram":{"field":"price","interval":5000,"min_doc_count":1}}}}
范圍分組
GET /cars/_search
{"size":0,"aggs":{"price_range":{"range":{"field":"price","ranges":[{"from":5000,"to":15000},{"from":15000,"to":20000},{"from":20000,"to":25000},{"from":25000,"to":35000},{"from":35000,"to":40000}]}}}}