栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 前沿技术 > 大数据 > 大数据系统

python 读取elasticsearch数据

python 读取elasticsearch数据

from elasticsearch import Elasticsearch


es = Elasticsearch(['x.x.x.x'], timeout=36000)

body1 = {"size": 10000,
             "query": {"match_all": {}}}

res1 = es.search(index="goods",scroll='5m', body=body1)


print('#############################################3')
# print(count)

es_size = 1000
page=res1
total_hits=page['hits']['total'] # total es requests for this query - int
total_requests=int(total_hits['value']/es_size +1) # int
es_scroll_id = page['_scroll_id'] # first es return index - string
es_result=page['hits']['hits'] #first es return context

for i in range(0, total_requests):
   page_scroll=es.scroll(scroll_id=es_scroll_id, scroll='30s')['hits']['hits']
   print(page_scroll)
   es_result += page_scroll

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/336051.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号