我似乎无法使用滚动API检索所有匹配。现在,只返回10个。
http://host:port/_search?scroll=1m
返回
{
"_scroll_id": "scroll_id"
...
...
"hits": {
"hits": [{10 hits in there}]
}
}
我取_scroll_id
值,然后执行此POST
http://host:port/_search/scroll -d {
"scroll": "1m",
"scroll_id": "scroll_id"
}
当我想要返回所有命中时,我似乎得到了相同的回应