我有一个使用" MultiSearch API"的查询,我的查询是这样的:
{"index" : "my-index-01", "type": "my-type-01"}
{"query":{"multi_match":{"query":"house","fields":["name", "title"]}}}
{"index" : "my-index-02", "type": "my-type-02"}
{"query":{"multi_match":{"query":"c","fields":["name","title"]}}}
{"index" : "my-index-03", "type": "my-type-03"}
{"query":{"multi_match":{"query":"c","fields":["name"]}}}
我想知道是否可以使用"滚动"在Multisearch API中(在每个查询中)或者我只能使用/ size?
使用multisearch API进行分页的最佳方法是什么?
答案 0 :(得分:0)
Elasticsearch Multisearch API 尚不支持 Scroll API 。 Github Thread
最好将from & size
用于您的目的。