python elasticsearch模块使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python elasticsearch模块使用相关的知识,希望对你有一定的参考价值。

环境 : pyhton3

加载模块
from elasticsearch import Elasticsearch

连接ES
es = Elasticsearch(["172.30.6.12"])


查询

res = es.search(index="test-index", body={"query":{"match_all":{}}})

# 查询请求主机是ai.baidu.com 所有信息
res = es.search(index="packetbeat-*", body={'query':{'match':{'http.request.headers.host':'ai.baidu.com'}}})



res = es.search(index="test-index", body={'query':{'match':{'any':'data'}}}) #获取any=data的所有值


参考链接:https://www.cnblogs.com/yxpblog/p/5141738.html




以上是关于python elasticsearch模块使用的主要内容,如果未能解决你的问题,请参考以下文章

elasticsearch API使用方法备忘(Python)

python Elasticsearch5.x使用

elaseticsearchelaseticsearch启动报错Caused by: org.elasticsearch.transport.BindTransportException: Fai(代

python操作elasticsearch

python扩展实现方法--python与c混和编程 转自:http://www.cnblogs.com/btchenguang/archive/2012/09/04/2670849.html(示例代

elasticsearch之python操作(非原生)