我使用/_msearch API通过一个请求执行多个查询。但是它不允许我指定URL,所以看起来我不能用/_count API获取文档。有没有什么方法可以用msearch API获取文档数?
/_msearch
/_count
svujldwt1#
您可以向_msearch调用添加另一个match_all查询,如下所示:
_msearch
match_all
POST _msearch { "index": "index1" } { "query1" } { "index": "index2" } { "query2" } { "index": "index3" } { "track_total_hits": true, "size": 0, "query": {"match_all":{}} }
1条答案
按热度按时间svujldwt1#
您可以向
_msearch
调用添加另一个match_all
查询,如下所示: