GET /_msearch{"index":"megacorp"}{"query":{"match":{"about":"I love"}}}{"index":"megacorp"}{"aggs":{"all_interests":{"terms":{"field":"interests.keyword"}}}}
如果是同一个索引可以简写成如下
GET /megacorp/_msearch{}{"query":{"match":{"about":"I love"}}}{}{"aggs":{"all_interests":{"terms":{"field":"interests.keyword"}}}}
POST _bulk{"delete":{"_index":"megacorp","_id":30}}{"create":{"_index":"megacorp","_id":5}}{"first_name":"John","last_name":"Smith","age":25,"about":"I love to go rock climbing","interests":["sports","music"]}{"create":{"_index":"megacorp","_id":6}}{"first_name":"John","last_name":"Smith","age":25,"about":"I love to go rock climbing","interests":["sports","music"]}{"index":{"_index":"megacorp","_id":7}}{"first_name":"John","last_name":"Smith","age":25,"about":"I love to go rock climbing","interests":["sports","music"]}{"index":{"_index":"megacorp","_id":8}}{"first_name":"John","last_name":"Smith","age":25,"about":"I love to go rock climbing","interests":["sports","music"]}{"update":{"_index":"megacorp","_id":1}}{"doc":{"age":55}}