当前位置: 首页 > 图灵资讯 > 行业资讯> Python Elasticsearch DSL如何使用

Python Elasticsearch DSL如何使用

来源:图灵python
时间: 2024-08-14 11:06:13

1、连接Es:

importelasticsearch

es=elasticsearch.Elasticsearch([{'host':'127.0.0.1','port':9200}])

2、先看搜索,q 是指搜索内容,空格对 q 查询结果没有影响,size 指定个数,from_ 指定起始位置,filter_path 需要显示的数据可以指定,如果显示在最终结果中 _id 和 _type。

res_3=es.search(index="bank",q="Holmes",size=1,from_=1)
res_4=es.search(index="bank",q="392255686",size=1000,filter_path=['hits.hits._id','hits.hits._type'])

3、根据字段查询,可叠加多个查询条件:

s=Search(using=es,index="index-test").query("match",sip="192.168.1.1")
s=s.query("match",dip="192.168.1.2")
s=s.excute()

以上是Python Elasticsearch 使用DSL,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。