我有查询从弹性搜索中获取数据result = es.search(index="my_index", body={"size": 1000, "query": {"match_all": {}}})
print (result)我一次就把所有元素都带来了但我需要不断增加尺寸,比如 10 到 20、20 到 30
1 回答
杨魅力
TA贡献1811条经验 获得超6个赞
使用from参数:
result = es.search(index="my_index",
body={
"from": 10, # <---------
"size": 10,
"query": {"match_all": {}}
})
添加回答
举报
0/150
提交
取消