gpt4 book ai didi

python - 如何获得 Elasticsearch 页面增量元素

转载 作者:行者123 更新时间:2023-12-02 23:07:49 24 4
gpt4 key购买 nike

我有查询要从 flex 搜索中获取数据

result = es.search(index="my_index", body={"size": 1000, "query": {"match_all": {}}})
print (result)
一口气我带走了所有要素
但是我需要继续增加,比如说10到20、20到30这样的大小

最佳答案

使用from参数:

result = es.search(index="my_index",
body={
"from": 10, # <---------
"size": 10,
"query": {"match_all": {}}
})

关于python - 如何获得 Elasticsearch 页面增量元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63635144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com