Elasticsearch聚合深入详解——对比Mysql实现

本文涉及的产品
检索分析服务 Elasticsearch 版,2核4GB开发者规格 1个月
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
简介: 聚合认知前提桶(Buckets)——满足特定条件的文档的集合指标(Metrics)——对桶内的文档进行统计计算SELECT COUNT(color)FROM tableGROUP BY colorCOUNT(color) 相当于指标。GROUP BY color 相当于桶。

image.png一、聚合起步

1、创建索引

1.1 创建索引DSL实现

put cars

POST /cars/transactions/_bulk

{ "index": {}}

{ "price" : 10000, "color" : "red", "make" : "honda", "sold" : "2014-10-28" }

{ "index": {}}

{ "price" : 20000, "color" : "red", "make" : "honda", "sold" : "2014-11-05" }

{ "index": {}}

{ "price" : 30000, "color" : "green", "make" : "ford", "sold" : "2014-05-18" }

{ "index": {}}

{ "price" : 15000, "color" : "blue", "make" : "toyota", "sold" : "2014-07-02" }

{ "index": {}}

{ "price" : 12000, "color" : "green", "make" : "toyota", "sold" : "2014-08-19" }

{ "index": {}}

{ "price" : 20000, "color" : "red", "make" : "honda", "sold" : "2014-11-05" }

{ "index": {}}

{ "price" : 80000, "color" : "red", "make" : "bmw", "sold" : "2014-01-01" }

{ "index": {}}

{ "price" : 25000, "color" : "blue", "make" : "ford", "sold" : "2014-02-12" }

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

1.2 创建mysql库表sql实现

CREATE TABLE `cars` (

 `id` int(11) NOT NULL,

 `price` int(11) DEFAULT NULL,

 `color` varchar(255) DEFAULT NULL,

 `make` varchar(255) DEFAULT NULL,

 `sold` date DEFAULT NULL

) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

1

2

3

4

5

6

7

2、统计不同颜色车的数目

2.1 统计不同颜色车的DSL实现

GET /cars/transactions/_search

{

 "size":0,

 "aggs":{

 "popular_colors" : {

 "terms":{

 "field": "color.keyword"

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

返回结果:


lve


2.2 统计不同颜色的mysql实现

select color, count(color) as cnt from cars group by color order by cnt desc;

1

返回结果:


red 4

green 2

blue 2

1

2

3

3、统计不同颜色车的平均价格

3.1 统计不同颜色车的平均价格DSL实现:

GET /cars/transactions/_search

{

 "size":0,

 "aggs":{

 "colors" : {

 "terms":{

 "field": "color.keyword"

 },

 "aggs":{

 "avg_price":{

 "avg": {

 "field": "price"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

返回聚合结果:


lve


3.2 统计不同颜色车的平均价格sql实现:

select color, count(color) as cnt, avg(price) as avg_price from cars group by color order by cnt desc;


color cnt avg_price

red 4 32500.0000

green 2 21000.0000

blue 2 20000.0000

1

2

3

4

5

6

4、每种颜色汽车制造商的分布

4.1 统计每种颜色汽车制造商的分布dsl实现

GET /cars/transactions/_search

{

 "size":0,

 "aggs":{

 "colors" : {

 "terms":{

 "field": "color.keyword"

 },

 "aggs":{

 "make":{

 "terms":{

 "field": "make.keyword"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

返回结果:


4.2 统计每种颜色汽车制造商的分布sql实现

说明:和dsl的实现不严格对应


select color, make from cars order by color;


color make

blue toyota

blue ford

green ford

green toyota

red bmw

red honda

red honda

red honda

1

2

3

4

5

6

7

8

9

10

11

5、统计每个制造商的最低价格、最高价格

5.1 统计每个制造商的最低、最高价格的DSL实现

GET /cars/transactions/_search

{

 "size":0,

 "aggs":{

 "make_class" : {

 "terms":{

 "field": "make.keyword"

 },

 "aggs":{

 "min_price":{

 "min":{

 "field": "price"

 }

 },

 "max_price":{

 "max":{

 "field": "price"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

聚合结果:


5.2 统计每个制造商的最低、最高价格的sql实现

select make, min(price) as min_price, max(price) as max_price from cars group by make;


make min_price max_price

bmw 80000 80000

ford 25000 30000

honda 10000 20000

toyota 12000 15000

1

2

3

4

5

6

7

二、聚合进阶

1、条形图聚合

1.1 分段统计每个区间的汽车销售价格总和

GET /cars/transactions/_search

{

 "size":0,

 "aggs":{

 "price" : {

 "histogram":{

 "field": "price",

 "interval": 20000

 },

 "aggs":{

 "revenue":{

 "sum":{

 "field": "price"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

汽车销售价格区间:定义为20000;

分段统计price和用sum统计。


1.2 多维度度量不同制造商的汽车指标

GET /cars/transactions/_search

{

 "size" : 0,

 "aggs": {

 "makes": {

 "terms": {

 "field": "make.keyword",

 "size": 10

 },

 "aggs": {

 "stats": {

 "extended_stats": {

 "field": "price"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

输出截取片段:


{

 "key": "ford",

 "doc_count": 2,

 "stats": {

 "count": 2,

 "min": 25000,

 "max": 30000,

 "avg": 27500,

 "sum": 55000,

 "sum_of_squares": 1525000000,

 "variance": 6250000,

 "std_deviation": 2500,

 "std_deviation_bounds": {

 "upper": 32500,

 "lower": 22500

 }

 }

 }

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

2、按时间统计聚合

2.1 按月份统计制造商汽车销量dsl实现

GET /cars/transactions/_search

{

 "size" : 0,

 "aggs": {

 "sales":{

 "date_histogram":{

 "field":"sold",

 "interval":"month",

 "format":"yyyy-MM-dd"

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

返回结果:


2.2 按月份统计制造商汽车销量sql实现

SELECT make, count(make) as cnt, CONCAT(YEAR(sold),',',MONTH(sold)) AS data_time

FROM `cars`

GROUP BY YEAR(sold) DESC,MONTH(sold)


查询结果如下:

make cnt data_time

bmw 1 2014,1

ford 1 2014,2

ford 1 2014,5

toyota 1 2014,7

toyota 1 2014,8

honda 1 2014,10

honda 2 2014,11

1

2

3

4

5

6

7

8

9

10

11

12

13

2.3 包含12月份的处理DSL实现

以上2.1 中没有12月份的统计结果显示。


GET /cars/transactions/_search

{

 "size" : 0,

 "aggs": {

 "sales":{

 "date_histogram":{

 "field":"sold",

 "interval":"month",

 "format":"yyyy-MM-dd",

 "min_doc_count": 0,

 "extended_bounds":{

 "min":"2014-01-01",

 "max":"2014-12-31"

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

2.4 以季度为单位统计DSL实现

GET /cars/transactions/_search

{

 "size" : 0,

 "aggs": {

 "sales":{

 "date_histogram":{

 "field":"sold",

 "interval":"quarter",

 "format":"yyyy-MM-dd",

 "min_doc_count": 0,

 "extended_bounds":{

 "min":"2014-01-01",

 "max":"2014-12-31"

 }

 },

 "aggs":{

 "per_make_sum":{

 "terms":{

 "field": "make.keyword"

 },

 "aggs":{

 "sum_price":{

 "sum":{ "field": "price"}

 }

 }

 },

 "top_sum": {

 "sum": {"field":"price"}

 }

 }

 }

 }

 }

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

2.5 基于搜索的(范围限定)聚合操作

2.5.1 基础查询聚合

GET /cars/transactions/_search

{

 "query" : {

 "match" : {

 "make.keyword" : "ford"

 }

 },

 "aggs" : {

 "colors" : {

 "terms" : {

 "field" : "color.keyword"

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

对应的sql实现:


select make, color from cars

where make = "ford";


结果返回如下:

make color

ford green

ford blue

1

2

3

4

5

6

7

三、过滤聚合

1. 过滤操作

统计全部汽车的平均价钱以及单品平均价钱;


GET /cars/transactions/_search

{

 "size" : 0,

 "query" : {

 "match" : {

 "make.keyword" : "ford"

 }

 },

 "aggs" : {

 "single_avg_price": {

 "avg" : { "field" : "price" }

 },

 "all": {

 "global" : {},

 "aggs" : {

 "avg_price": {

 "avg" : { "field" : "price" }

 }


 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

等价于:


select make, color, avg(price) from cars

where make = "ford" ;

select avg(price) from cars;

1

2

3

2、范围限定过滤(过滤桶)

我们可以指定一个过滤桶,当文档满足过滤桶的条件时,我们将其加入到桶内。


GET /cars/transactions/_search

{

 "size" : 0,

 "query":{

 "match": {

 "make": "ford"

 }

 },

 "aggs":{

 "recent_sales": {

 "filter": {

 "range": {

 "sold": {

 "from": "now-100M"

 }

 }

 },

 "aggs": {

 "average_price":{

 "avg": {

 "field": "price"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

mysql的实现如下:


select *, avg(price) from cars where period_diff(date_format(now() , '%Y%m') , date_format(sold, '%Y%m')) > 30

and make = "ford";



mysql查询结果如下:

id price color make sold avg

3 30000 green ford 2014-05-18 27500.0000

1

2

3

4

5

6

7

3、后过滤器

只过滤搜索结果,不过滤聚合结果——post_filter实现


GET /cars/transactions/_search

{

 "query": {

 "match": {

 "make": "ford"

 }

 },

 "post_filter": {

 "term" : {

 "color.keyword" : "green"

 }

 },

 "aggs" : {

 "all_colors": {

 "terms" : { "field" : "color.keyword" }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

post_filter 会过滤搜索结果,只展示绿色 ford 汽车。这在查询执行过 后 发生,所以聚合不受影响。


小结

选择合适类型的过滤(如:搜索命中、聚合或两者兼有)通常和我们期望如何表现用户交互有关。选择合适的过滤器(或组合)取决于我们期望如何将结果呈现给用户。


在 filter 过滤中的 non-scoring 查询,同时影响搜索结果和聚合结果。

filter 桶影响聚合。

post_filter 只影响搜索结果。

四、多桶排序

4.1 内置排序

GET /cars/transactions/_search

{

 "size" : 0,

 "aggs" : {

 "colors" : {

 "terms" : {

 "field" : "color.keyword",

 "order": {

 "_count" : "asc"

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

4.2 按照度量排序

以下是按照汽车平均售价的升序进行排序。

过滤条件:汽车颜色;

聚合条件:平均价格;

排序条件:汽车的平均价格升序。


GET /cars/transactions/_search

{

 "size" : 0,

 "aggs" : {

 "colors" : {

 "terms" : {

 "field" : "color.keyword",

 "order": {

 "avg_price" : "asc"

 }

 },

 "aggs": {

 "avg_price": {

 "avg": {"field": "price"}

 }

 }

 }

}

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

多条件聚合后排序如下所示:


GET /cars/transactions/_search

{

 "size" : 0,

 "aggs" : {

 "colors" : {

 "terms" : {

 "field" : "color.keyword",

 "order": {

 "stats.variance" : "asc"

 }

 },

 "aggs": {

 "stats": {

 "extended_stats": {"field": "price"}

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

4.3 基于“深度”的度量排序

太复杂,不推荐!


五、近似聚合

cardinality的含义是“基数”;


5.1 统计去重后的数量

GET /cars/transactions/_search

{

 "size" : 0,

 "aggs" : {

 "distinct_colors" : {

 "cardinality" : {

 "field" : "color.keyword"

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

类似于:


SELECT COUNT(DISTINCT color)  FROM cars;

1

以下:

以月为周期统计;


GET /cars/transactions/_search

{

 "size" : 0,

 "aggs" : {

 "months" : {

 "date_histogram": {

 "field": "sold",

 "interval": "month"

 },

 "aggs": {

 "distinct_colors" : {

 "cardinality" : {

 "field" : "color.keyword"

 }

 }

 }

 }

 }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

六、doc values解读

在 Elasticsearch 中,doc values 就是一种列式存储结构,默认情况下每个字段的 doc values 都是激活的,doc values 是在索引时创建的,当字段索引时,Elasticsearch 为了能够快速检索,会把字段的值加入倒排索引中,同时它也会存储该字段的 doc values。

Elasticsearch 中的 doc vaules 常被应用到以下场景:


- 1)对一个字段进行排序

- 2)对一个字段进行聚合

- 3)某些过滤,比如地理位置过滤

- 4) 某些与字段相关的脚本计算

1

2

3

4

因为文档值被序列化到磁盘,我们可以依靠操作系统的帮助来快速访问。当 working set 远小于节点的可用内存,系统会自动将所有的文档值保存在内存中,使得其读写十分高速;


当其远大于可用内存,操作系统会自动把 doc values 加载到系统的页缓存中,从而避免了 jvm 堆内存溢出异常。

相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
11天前
|
存储 SQL 监控
|
17天前
|
SQL NoSQL 关系型数据库
2024Mysql And Redis基础与进阶操作系列(5)作者——LJS[含MySQL DQL基本查询:select;简单、排序、分组、聚合、分组、分页等详解步骤及常见报错问题所对应的解决方法]
MySQL DQL基本查询:select;简单、排序、分组、聚合、分组、分页、INSERT INTO SELECT / FROM查询结合精例等详解步骤及常见报错问题所对应的解决方法
|
1月前
|
关系型数据库 MySQL API
MySQL 历史数据迁移到 Elasticsearch
MySQL 历史数据迁移到 Elasticsearch
71 4
|
17天前
|
SQL NoSQL 关系型数据库
|
2月前
|
NoSQL 关系型数据库 Redis
mall在linux环境下的部署(基于Docker容器),Docker安装mysql、redis、nginx、rabbitmq、elasticsearch、logstash、kibana、mongo
mall在linux环境下的部署(基于Docker容器),docker安装mysql、redis、nginx、rabbitmq、elasticsearch、logstash、kibana、mongodb、minio详细教程,拉取镜像、运行容器
mall在linux环境下的部署(基于Docker容器),Docker安装mysql、redis、nginx、rabbitmq、elasticsearch、logstash、kibana、mongo
|
1月前
|
消息中间件 监控 关系型数据库
MySQL数据实时同步到Elasticsearch:技术深度解析与实践分享
在当今的数据驱动时代,实时数据同步成为许多应用系统的核心需求之一。MySQL作为关系型数据库的代表,以其强大的事务处理能力和数据完整性保障,广泛应用于各种业务场景中。然而,随着数据量的增长和查询复杂度的提升,单一依赖MySQL进行高效的数据检索和分析变得日益困难。这时,Elasticsearch(简称ES)以其卓越的搜索性能、灵活的数据模式以及强大的可扩展性,成为处理复杂查询需求的理想选择。本文将深入探讨MySQL数据实时同步到Elasticsearch的技术实现与最佳实践。
85 0
|
2月前
|
存储 自然语言处理 关系型数据库
ElasticSearch基础3——聚合、补全、集群。黑马旅游检索高亮+自定义分词器+自动补全+前后端消息同步
聚合、补全、RabbitMQ消息同步、集群、脑裂问题、集群分布式存储、黑马旅游实现过滤和搜索补全功能
ElasticSearch基础3——聚合、补全、集群。黑马旅游检索高亮+自定义分词器+自动补全+前后端消息同步
|
3月前
|
自然语言处理 Java 关系型数据库
ElasticSearch 实现分词全文检索 - 聚合查询 cardinality
ElasticSearch 实现分词全文检索 - 聚合查询 cardinality
119 1
|
4月前
|
存储 关系型数据库 MySQL
【Elasticsearch】在es中实现mysql中的FIND_IN_SET查询条件
【Elasticsearch】在es中实现mysql中的FIND_IN_SET查询条件
118 0
|
5月前
|
存储 缓存 自然语言处理
elasticsearch 聚合 : 指标聚合、桶聚合、管道聚合解析使用总结
elasticsearch 聚合 : 指标聚合、桶聚合、管道聚合解析使用总结