python调用elasticsearch(Python-ElasticSearch搜索查询的讲解)
类别:脚本大全 浏览量:236
时间:2022-01-21 00:20:22 python调用elasticsearch
Python-ElasticSearch搜索查询的讲解Elasticsearch 是一个开源的搜索引擎,建立在一个全文搜索引擎库 Apache Lucene™ 基础之上。 Lucene 可能是目前存在的,不论开源还是私有的,拥有最先进,高性能和全功能搜索引擎功能的库。但是 Lucene 仅仅只是一个库。为了利用它,你需要编写 Java 程序,并在你的 java 程序里面直接集成 Lucene 包。 更坏的情况是,你需要对信息检索有一定程度的理解才能明白 Lucene 是怎么工作的。Lucene 是 很 复杂的。
在上一篇文章中介绍了ElasticSearch的简单使用,接下来记录一下ElasticSearch的查询:
查询所有数据
|
# 搜索所有数据 es.search(index = "my_index" ,doc_type = "test_type" ) # 或者 body = { "query" :{ "match_all" :{} } } es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
term与terms
|
# term body = { "query" :{ "term" :{ "name" : "python" } } } # 查询name="python"的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) # terms body = { "query" :{ "terms" :{ "name" :[ "python" , "android" ] } } } # 搜索出name="python"或name="android"的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
match与multi_match
|
# match:匹配name包含python关键字的数据 body = { "query" :{ "match" :{ "name" : "python" } } } # 查询name包含python关键字的数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) # multi_match:在name和addr里匹配包含深圳关键字的数据 body = { "query" :{ "multi_match" :{ "query" : "深圳" , "fields" :[ "name" , "addr" ] } } } # 查询name和addr包含"深圳"关键字的数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
ids
|
body = { "query" :{ "ids" :{ "type" : "test_type" , "values" :[ "1" , "2" ] } } } # 搜索出id为1或2d的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
复合查询bool
bool有3类查询关系,must(都满足),should(其中一个满足),must_not(都不满足)
|
body = { "query" :{ "bool" :{ "must" :[ { "term" :{ "name" : "python" } }, { "term" :{ "age" : 18 } } ] } } } # 获取name="python"并且age=18的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
切片式查询
|
body = { "query" :{ "match_all" :{} } "from" : 2 # 从第二条数据开始 "size" : 4 # 获取4条数据 } # 从第2条数据开始,获取4条数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
范围查询
|
body = { "query" :{ "range" :{ "age" :{ "gte" : 18 , # >=18 "lte" : 30 # <=30 } } } } # 查询18<=age<=30的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
前缀查询
|
body = { "query" :{ "prefix" :{ "name" : "p" } } } # 查询前缀为"赵"的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
通配符查询
|
body = { "query" :{ "wildcard" :{ "name" : "*id" } } } # 查询name以id为后缀的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
排序
|
body = { "query" :{ "match_all" :{} } "sort" :{ "age" :{ # 根据age字段升序排序 "order" : "asc" # asc升序,desc降序 } } } |
filter_path
响应过滤
|
# 只需要获取_id数据,多个条件用逗号隔开 es.search(index = "my_index" ,doc_type = "test_type" ,filter_path = [ "hits.hits._id" ]) # 获取所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,filter_path = [ "hits.hits._*" ]) |
count
执行查询并获取该查询的匹配数
|
# 获取数据量 es.count(index = "my_index" ,doc_type = "test_type" ) |
度量类聚合
- 获取最小值
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "min_age" :{ # 最小值的key "min" :{ # 最小 "field" : "age" # 查询"age"的最小值 } } } } # 搜索所有数据,并获取age最小的值 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
- 获取最大值
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "max_age" :{ # 最大值的key "max" :{ # 最大 "field" : "age" # 查询"age"的最大值 } } } } # 搜索所有数据,并获取age最大的值 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
- 获取和
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "sum_age" :{ # 和的key "sum" :{ # 和 "field" : "age" # 获取所有age的和 } } } } # 搜索所有数据,并获取所有age的和 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
- 获取平均值
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "avg_age" :{ # 平均值的key "sum" :{ # 平均值 "field" : "age" # 获取所有age的平均值 } } } } # 搜索所有数据,获取所有age的平均值 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
更多的搜索用法:
https://elasticsearch-py.readthedocs.io/en/master/api.html
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/y472360651/article/details/76652021
您可能感兴趣
- python怎样读取mysql数据(使用Python将Mysql的查询数据导出到文件的方法)
- laravel查询构建器原理和使用(阿里对象存储OSS在laravel框架中的使用方法)
- 查看SQL SERVER中某个查询用了多少TempDB空间
- mysql基本查询方法(MySQL 重写查询语句的三种策略)
- SQLServer中JSON文档型数据的查询问题解决(SQLServer中JSON文档型数据的查询问题解决)
- mysqlcount使用技巧(MySQL巧用sum、case和when优化统计查询)
- SqlServer 按时间段查询问题(SqlServer 按时间段查询问题)
- mysql查询语法总结(MySQL全面瓦解之查询的过滤条件详解)
- mysql缓存是什么(详解mysql查询缓存简单使用)
- sql数据分页怎么查询(SQL数据分页查询的方法)
- sqlsever查看视图数据类型(SQL Sever查询语句大全集锦)
- Linq中select查询
- laravel语法有哪些(对laravel in 查询的使用方法详解)
- 常用SQL查询语句
- css高级使用技巧(全面解析CSS Media媒体查询使用操作推荐)
- django框架详解(Django如何开发简单的查询接口详解)
- 三杨之一 南杨 杨溥 安贞履节,酿醴调羹,宰相之气(三杨之一南杨杨溥)
- 今天会下雨吗(今天会下雨吗小说)
- 追连续剧,品古今联4 明代三杨,联妙诗佳(追连续剧品古今联4)
- 三杨 共辅四朝帝王,构建明帝国内阁行政圈(三杨共辅四朝帝王)
- 红色文化进国企(红色文化进国企)
- 车友的选择| 轮毂该如何选(车友的选择轮毂该如何选)
热门推荐
- django实现登录注册(django与小程序实现登录验证功能的示例代码)
- apache2.4支持php5.5吗(WINDOWS下php5.2.4+mysql6.0+apache2.2.4+ZendOptimizer-3.3.0配置)
- python爬虫面试经历(搞定这套Python爬虫面试题面试会so easy)
- python实现linux服务(Python实现Linux监控的方法)
- vmware esxi 网络配置(探索VMware ESXI CLI常用命令)
- 忘记mysql密码怎么登录(Mysql用户忘记密码及密码过期问题的处理方法)
- css3弹出动画效果(CSS3实现跳动的动画效果)
- php设置上传文件代码(PHP大文件切割上传并带进度条功能示例)
- SQL Server中使用order by charindex按指定顺序排序
- MySql 中IFNULL、ISNULL和NULLIF
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9