在测试ElasticSearch时,我注意到了
GET /vitex.inventory/Items/_search?scroll=1m
{
"from": 10,
"size": 10
}
和
GET /vitex.inventory/Items/_search
{
"from": 10,
"size": 10
}
不会返回相同的结果,因为在使用from
时会完全忽略scroll
参数。怎么会这样?
为什么不能在指定的偏移处开始滚动?
答案 0 :(得分:0)
是的,只需滚动<base href="/" />
,不需要size
。
第一个滚动请求将为每个分片检索from
个文档,所有后续请求也会这样做。
无需指定size
,无论如何都会被忽略。