一、ElasticSearch文档分值_score计算底层原理
    1)boolean model
    根据用户的query条件,先过滤出包含指定term的doc

    1. query "hello world" --> hello / world / hello & world
    2. bool --> must/must not/should --> 过滤 --> 包含 / 不包含 / 可能包含
    3. doc --> 不打分数 --> 正或反 true or false --> 为了减少后续要计算的doc的数量,提升性能

    2)relevance score算法,简单来说,就是计算出,一个索引中的文本,与搜索文本,他们之间的关联匹配程度
    Elasticsearch使用的是 term frequency/inverse document frequency算法,简称为TF/IDF算法
    Term frequency:搜索文本中的各个词条在field文本中出现了多少次,出现次数越多,就越相关

    1. 搜索请求:hello world
    2. doc1hello you, and world is very good
    3. doc2hello, how are you

    Inverse document frequency:搜索文本中的各个词条在整个索引的所有文档中出现了多少次,出现的次数越多,就越不相关

    1. 搜索请求:hello world
    2. doc1hello, tuling is very good
    3. doc2hi world, how are you

    比如说,在index中有1万条document,hello这个单词在所有的document中,一共出现了1000次;world这个单词在所有的document中,一共出现了100次
    Field-length norm:field长度,field越长,相关度越弱
    搜索请求:hello world

    1. doc1:{ "title": "hello article", "content": "...... N个单词" }
    2. doc2:{ "title": "my article", "content": "...... N个单词,hi world" }

    hello world在整个index中出现的次数是一样多的
    doc1更相关,title field更短
    2、分析一个document上的_score是如何被计算出来的

    1. GET /es_db/_doc/1/_explain
    2. {
    3. "query": {
    4. "match": {
    5. "remark": "java developer"
    6. }
    7. }
    8. }

    二、分词器工作流程
    切分词语,normalization
    给你一段句子,然后将这段句子拆分成一个一个的单个的单词,同时对每个单词进行normalization(时态转换,单复数转换),分词器
    recall,召回率:搜索的时候,增加能够搜索到的结果的数量

    1. character filter:在一段文本进行分词之前,先进行预处理,比如说最常见的就是,过滤html标签(<span>hello<span> --> hello),& --> andI&you --> I and you
    2. tokenizer:分词,hello you and me --> hello, you, and, me
    3. token filterlowercasestop wordsynonymomliked --> likeTom --> toma/the/an --> 干掉,small --> little

    一个分词器,很重要,将一段文本进行各种处理,最后处理好的结果才会拿去建立倒排索引
    2、内置分词器的介绍

    1. Set the shape to semi-transparent by calling set_trans(5)
    2. standard analyzerset, the, shape, to, semi, transparent, by, calling, set_trans, 5(默认的是standard
    3. simple analyzerset, the, shape, to, semi, transparent, by, calling, set, trans
    4. whitespace analyzerSet, the, shape, to, semi-transparent, by, calling, set_trans(5)
    5. stop analyzer:移除停用词,比如a the it等等
    6. 测试:
    7. POST _analyze
    8. {
    9. "analyzer":"standard",
    10. "text":"Set the shape to semi-transparent by calling set_trans(5)"
    11. }

    3、定制分词器
    1)默认的分词器
    standard
    standard tokenizer:以单词边界进行切分
    standard token filter:什么都不做
    lowercase token filter:将所有字母转换为小写
    stop token filer(默认被禁用):移除停用词,比如a the it等等
    2)修改分词器的设置
    启用english停用词token filter

    1. PUT /my_index
    2. {
    3. "settings": {
    4. "analysis": {
    5. "analyzer": {
    6. "es_std": {
    7. "type": "standard",
    8. "stopwords": "_english_"
    9. }
    10. }
    11. }
    12. }
    13. }
    14. GET /my_index/_analyze
    15. {
    16. "analyzer": "standard",
    17. "text": "a dog is in the house"
    18. }
    19. GET /my_index/_analyze
    20. {
    21. "analyzer": "es_std",
    22. "text":"a dog is in the house"
    23. }
    24. 3、定制化自己的分词器
    25. PUT /my_index
    26. {
    27. "settings": {
    28. "analysis": {
    29. "char_filter": {
    30. "&_to_and": {
    31. "type": "mapping",
    32. "mappings": ["&=> and"]
    33. }
    34. },
    35. "filter": {
    36. "my_stopwords": {
    37. "type": "stop",
    38. "stopwords": ["the", "a"]
    39. }
    40. },
    41. "analyzer": {
    42. "my_analyzer": {
    43. "type": "custom",
    44. "char_filter": ["html_strip", "&_to_and"],
    45. "tokenizer": "standard",
    46. "filter": ["lowercase", "my_stopwords"]
    47. }
    48. }
    49. }
    50. }
    51. }
    52. GET /my_index/_analyze
    53. {
    54. "text": "tom&jerry are a friend in the house, <a>, HAHA!!",
    55. "analyzer": "my_analyzer"
    56. }
    57. PUT /my_index/_mapping/my_type
    58. {
    59. "properties": {
    60. "content": {
    61. "type": "text",
    62. "analyzer": "my_analyzer"
    63. }
    64. }
    65. }

    3)ik分词器详解
    ik配置文件地址:es/plugins/ik/config目录
    IKAnalyzer.cfg.xml:用来配置自定义词库
    main.dic:ik原生内置的中文词库,总共有27万多条,只要是这些单词,都会被分在一起
    quantifier.dic:放了一些单位相关的词
    suffix.dic:放了一些后缀
    surname.dic:中国的姓氏
    stopword.dic:英文停用词
    ik原生最重要的两个配置文件
    main.dic:包含了原生的中文词语,会按照这个里面的词语去分词
    stopword.dic:包含了英文的停用词
    停用词,stopword
    a the and at but
    一般,像停用词,会在分词的时候,直接被干掉,不会建立在倒排索引中
    4)IK分词器自定义词库
    (1)自己建立词库:每年都会涌现一些特殊的流行词,网红,蓝瘦香菇,喊麦,鬼畜,一般不会在ik的原生词典里
    自己补充自己的最新的词语,到ik的词库里面去
    IKAnalyzer.cfg.xml:ext_dict,custom/mydict.dic
    补充自己的词语,然后需要重启es,才能生效
    (2)自己建立停用词库:比如了,的,啥,么,我们可能并不想去建立索引,让人家搜索
    custom/ext_stopword.dic,已经有了常用的中文停用词,可以补充自己的停用词,然后重启es

    1. IK分词器源码下载:https://github.com/medcl/elasticsearch-analysis-ik/tree

    5)IK热更新
    每次都是在es的扩展词典中,手动添加新词语,很坑
    (1)每次添加完,都要重启es才能生效,非常麻烦
    (2)es是分布式的,可能有数百个节点,你不能每次都一个一个节点上面去修改
    es不停机,直接我们在外部某个地方添加新的词语,es中立即热加载到这些新词语
    IKAnalyzer.cfg.xml

    1. <properties>
    2. <comment>IK Analyzer 扩展配置</comment>
    3. <!--用户可以在这里配置自己的扩展字典 -->
    4. <entry key="ext_dict">location</entry>
    5. <!--用户可以在这里配置自己的扩展停止词字典-->
    6. <entry key="ext_stopwords">location</entry>
    7. <!--用户可以在这里配置远程扩展字典 -->
    8. <entry key="remote_ext_dict">words_location</entry>
    9. <!--用户可以在这里配置远程扩展停止词字典-->
    10. <entry key="remote_ext_stopwords">words_location</entry>
    11. </properties>

    三. 高亮显示
    在搜索中,经常需要对搜索关键字做高亮显示,高亮显示也有其常用的参数,在这个案例中做一些常用参数的介绍。
    现在搜索cars索引中remark字段中包含“大众”的document。并对“XX关键字”做高亮显示,高亮效果使用html标签,并设定字体为红色。如果remark数据过长,则只显示前20个字符。

    1. PUT /news_website
    2. {
    3. "mappings": {
    4. "properties": {
    5. "title": {
    6. "type": "text",
    7. "analyzer": "ik_max_word"
    8. },
    9. "content": {
    10. "type": "text",
    11. "analyzer": "ik_max_word"
    12. }
    13. }
    14. }
    15. }
    16. PUT /news_website
    17. {
    18. "settings" : {
    19. "index" : {
    20. "analysis.analyzer.default.type": "ik_max_word"
    21. }
    22. }
    23. }
    24. PUT /news_website/_doc/1
    25. {
    26. "title": "这是我写的第一篇文章",
    27. "content": "大家好,这是我写的第一篇文章,特别喜欢这个文章门户网站!!!"
    28. }
    29. GET /news_website/_doc/_search
    30. {
    31. "query": {
    32. "match": {
    33. "title": "文章"
    34. }
    35. },
    36. "highlight": {
    37. "fields": {
    38. "title": {}
    39. }
    40. }
    41. }
    42. {
    43. "took" : 458,
    44. "timed_out" : false,
    45. "_shards" : {
    46. "total" : 1,
    47. "successful" : 1,
    48. "skipped" : 0,
    49. "failed" : 0
    50. },
    51. "hits" : {
    52. "total" : {
    53. "value" : 1,
    54. "relation" : "eq"
    55. },
    56. "max_score" : 0.2876821,
    57. "hits" : [
    58. {
    59. "_index" : "news_website",
    60. "_type" : "_doc",
    61. "_id" : "1",
    62. "_score" : 0.2876821,
    63. "_source" : {
    64. "title" : "我的第一篇文章",
    65. "content" : "大家好,这是我写的第一篇文章,特别喜欢这个文章门户网站!!!"
    66. },
    67. "highlight" : {
    68. "title" : [
    69. "我的第一篇<em>文章</em>"
    70. ]
    71. }
    72. }
    73. ]
    74. }
    75. }
    76. <em></em>表现,会变成红色,所以说你的指定的field中,如果包含了那个搜索词的话,就会在那个field的文本中,对搜索词进行红色的高亮显示
    77. GET /news_website/_doc/_search
    78. {
    79. "query": {
    80. "bool": {
    81. "should": [
    82. {
    83. "match": {
    84. "title": "文章"
    85. }
    86. },
    87. {
    88. "match": {
    89. "content": "文章"
    90. }
    91. }
    92. ]
    93. }
    94. },
    95. "highlight": {
    96. "fields": {
    97. "title": {},
    98. "content": {}
    99. }
    100. }
    101. }
    102. highlight中的field,必须跟query中的field一一对齐的
    103. 2、常用的highlight介绍
    104. plain highlightlucene highlight,默认
    105. posting highlightindex_options=offsets
    106. 1)性能比plain highlight要高,因为不需要重新对高亮文本进行分词
    107. 2)对磁盘的消耗更少
    108. DELETE news_website
    109. PUT /news_website
    110. {
    111. "mappings": {
    112. "properties": {
    113. "title": {
    114. "type": "text",
    115. "analyzer": "ik_max_word"
    116. },
    117. "content": {
    118. "type": "text",
    119. "analyzer": "ik_max_word",
    120. "index_options": "offsets"
    121. }
    122. }
    123. }
    124. }
    125. PUT /news_website/_doc/1
    126. {
    127. "title": "我的第一篇文章",
    128. "content": "大家好,这是我写的第一篇文章,特别喜欢这个文章门户网站!!!"
    129. }
    130. GET /news_website/_doc/_search
    131. {
    132. "query": {
    133. "match": {
    134. "content": "文章"
    135. }
    136. },
    137. "highlight": {
    138. "fields": {
    139. "content": {}
    140. }
    141. }
    142. }
    143. fast vector highlight
    144. index-time term vector设置在mapping中,就会用fast verctor highlight
    145. 1)对大field而言(大于1mb),性能更高
    146. delete /news_website
    147. PUT /news_website
    148. {
    149. "mappings": {
    150. "properties": {
    151. "title": {
    152. "type": "text",
    153. "analyzer": "ik_max_word"
    154. },
    155. "content": {
    156. "type": "text",
    157. "analyzer": "ik_max_word",
    158. "term_vector" : "with_positions_offsets"
    159. }
    160. }
    161. }
    162. }
    163. 强制使用某种highlighter,比如对于开启了term vectorfield而言,可以强制使用plain highlight
    164. GET /news_website/_doc/_search
    165. {
    166. "query": {
    167. "match": {
    168. "content": "文章"
    169. }
    170. },
    171. "highlight": {
    172. "fields": {
    173. "content": {
    174. "type": "plain"
    175. }
    176. }
    177. }
    178. }
    179. 总结一下,其实可以根据你的实际情况去考虑,一般情况下,用plain highlight也就足够了,不需要做其他额外的设置
    180. 如果对高亮的性能要求很高,可以尝试启用posting highlight
    181. 如果field的值特别大,超过了1M,那么可以用fast vector highlight
    182. 3、设置高亮html标签,默认是<em>标签
    183. GET /news_website/_doc/_search
    184. {
    185. "query": {
    186. "match": {
    187. "content": "文章"
    188. }
    189. },
    190. "highlight": {
    191. "pre_tags": ["<span color='red'>"],
    192. "post_tags": ["</span>"],
    193. "fields": {
    194. "content": {
    195. "type": "plain"
    196. }
    197. }
    198. }
    199. }
    200. 4、高亮片段fragment的设置
    201. GET /_search
    202. {
    203. "query" : {
    204. "match": { "content": "文章" }
    205. },
    206. "highlight" : {
    207. "fields" : {
    208. "content" : {"fragment_size" : 150, "number_of_fragments" : 3 }
    209. }
    210. }
    211. }
    212. fragment_size: 你一个Field的值,比如有长度是1万,但是你不可能在页面上显示这么长啊。。。设置要显示出来的fragment文本判断的长度,默认是100
    213. number_of_fragments:你可能你的高亮的fragment文本片段有多个片段,你可以指定就显示几个片段

    四、 聚合搜索技术深入
    1.bucket和metric概念简介
    bucket就是一个聚合搜索时的数据分组。如:销售部门有员工张三和李四,开发部门有员工王五和赵六。那么根据部门分组聚合得到结果就是两个bucket。销售部门bucket中有张三和李四,
    开发部门 bucket中有王五和赵六。
    metric就是对一个bucket数据执行的统计分析。如上述案例中,开发部门有2个员工,销售部门有2个员工,这就是metric。
    metric有多种统计,如:求和,最大值,最小值,平均值等。
    用一个大家容易理解的SQL语法来解释,如:select count() from table group by column。那么group by column分组后的每组数据就是bucket。对每个分组执行的count()就是metric。
    2.准备案例数据

    1. PUT /cars
    2. {
    3. "mappings": {
    4. "properties": {
    5. "price": {
    6. "type": "long"
    7. },
    8. "color": {
    9. "type": "keyword"
    10. },
    11. "brand": {
    12. "type": "keyword"
    13. },
    14. "model": {
    15. "type": "keyword"
    16. },
    17. "sold_date": {
    18. "type": "date"
    19. },
    20. "remark" : {
    21. "type" : "text",
    22. "analyzer" : "ik_max_word"
    23. }
    24. }
    25. }
    26. }
    1. POST /cars/_bulk
    2. { "index": {}}
    3. { "price" : 258000, "color" : "金色", "brand":"大众", "model" : "大众迈腾", "sold_date" : "2021-10-28","remark" : "大众中档车" }
    4. { "index": {}}
    5. { "price" : 123000, "color" : "金色", "brand":"大众", "model" : "大众速腾", "sold_date" : "2021-11-05","remark" : "大众神车" }
    6. { "index": {}}
    7. { "price" : 239800, "color" : "白色", "brand":"标志", "model" : "标志508", "sold_date" : "2021-05-18","remark" : "标志品牌全球上市车型" }
    8. { "index": {}}
    9. { "price" : 148800, "color" : "白色", "brand":"标志", "model" : "标志408", "sold_date" : "2021-07-02","remark" : "比较大的紧凑型车" }
    10. { "index": {}}
    11. { "price" : 1998000, "color" : "黑色", "brand":"大众", "model" : "大众辉腾", "sold_date" : "2021-08-19","remark" : "大众最让人肝疼的车" }
    12. { "index": {}}
    13. { "price" : 218000, "color" : "红色", "brand":"奥迪", "model" : "奥迪A4", "sold_date" : "2021-11-05","remark" : "小资车型" }
    14. { "index": {}}
    15. { "price" : 489000, "color" : "黑色", "brand":"奥迪", "model" : "奥迪A6", "sold_date" : "2022-01-01","remark" : "政府专用?" }
    16. { "index": {}}
    17. { "price" : 1899000, "color" : "黑色", "brand":"奥迪", "model" : "奥迪A 8", "sold_date" : "2022-02-12","remark" : "很贵的大A6。。。" }

    五.聚合操作案例
    1、根据color分组统计销售数量
    只执行聚合分组,不做复杂的聚合统计。在ES中最基础的聚合为terms,相当于SQL中的count。
    在ES中默认为分组数据做排序,使用的是doc_count数据执行降序排列。可以使用_key元数据,根据分组后的字段数据执行不同的排序方案,也可以根据_count元数据,根据分组后的统计值执行不同的排序方案。

    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "group_by_color": {
    5. "terms": {
    6. "field": "color",
    7. "order": {
    8. "_count": "desc"
    9. }
    10. }
    11. }
    12. }
    13. }

    2、统计不同color车辆的平均价格
    本案例先根据color执行聚合分组,在此分组的基础上,对组内数据执行聚合统计,这个组内数据的聚合统计就是metric。同样可以执行排序,因为组内有聚合统计,且对统计数据给予了命名avg_by_price,所以可以根据这个聚合统计数据字段名执行排序逻辑。

    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "group_by_color": {
    5. "terms": {
    6. "field": "color",
    7. "order": {
    8. "avg_by_price": "asc"
    9. }
    10. },
    11. "aggs": {
    12. "avg_by_price": {
    13. "avg": {
    14. "field": "price"
    15. }
    16. }
    17. }
    18. }
    19. }
    20. }

    size可以设置为0,表示不返回ES中的文档,只返回ES聚合之后的数据,提高查询速度,当然如果你需要这些文档的话,也可以按照实际情况进行设置

    1. GET /cars/_search
    2. {
    3. "size" : 0,
    4. "aggs": {
    5. "group_by_color": {
    6. "terms": {
    7. "field": "color"
    8. },
    9. "aggs": {
    10. "group_by_brand" : {
    11. "terms": {
    12. "field": "brand",
    13. "order": {
    14. "avg_by_price": "desc"
    15. }
    16. },
    17. "aggs": {
    18. "avg_by_price": {
    19. "avg": {
    20. "field": "price"
    21. }
    22. }
    23. }
    24. }
    25. }
    26. }
    27. }
    28. }

    3、统计不同color不同brand中车辆的平均价格
    先根据color聚合分组,在组内根据brand再次聚合分组,这种操作可以称为下钻分析。
    Aggs如果定义比较多,则会感觉语法格式混乱,aggs语法格式,有一个相对固定的结构,简单定义:aggs可以嵌套定义,可以水平定义。
    嵌套定义称为下钻分析。水平定义就是平铺多个分组方式。

    1. GET /index_name/type_name/_search
    2. {
    3. "aggs" : {
    4. "定义分组名称(最外层)": {
    5. "分组策略如:terms、avg、sum" : {
    6. "field" : "根据哪一个字段分组",
    7. "其他参数" : ""
    8. },
    9. "aggs" : {
    10. "分组名称1" : {},
    11. "分组名称2" : {}
    12. }
    13. }
    14. }
    15. }
    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "group_by_color": {
    5. "terms": {
    6. "field": "color",
    7. "order": {
    8. "avg_by_price_color": "asc"
    9. }
    10. },
    11. "aggs": {
    12. "avg_by_price_color" : {
    13. "avg": {
    14. "field": "price"
    15. }
    16. },
    17. "group_by_brand" : {
    18. "terms": {
    19. "field": "brand",
    20. "order": {
    21. "avg_by_price_brand": "desc"
    22. }
    23. },
    24. "aggs": {
    25. "avg_by_price_brand": {
    26. "avg": {
    27. "field": "price"
    28. }
    29. }
    30. }
    31. }
    32. }
    33. }
    34. }
    35. }

    4、统计不同color中的最大和最小价格、总价

    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "group_by_color": {
    5. "terms": {
    6. "field": "color"
    7. },
    8. "aggs": {
    9. "max_price": {
    10. "max": {
    11. "field": "price"
    12. }
    13. },
    14. "min_price" : {
    15. "min": {
    16. "field": "price"
    17. }
    18. },
    19. "sum_price" : {
    20. "sum": {
    21. "field": "price"
    22. }
    23. }
    24. }
    25. }
    26. }
    27. }

    在常见的业务常见中,聚合分析,最常用的种类就是统计数量,最大,最小,平均,总计等。通常占有聚合业务中的60%以上的比例,小型项目中,甚至占比85%以上。
    5、统计不同品牌汽车中价格排名最高的车型
    在分组后,可能需要对组内的数据进行排序,并选择其中排名高的数据。那么可以使用s来实现:top_top_hithits中的属性size代表取组内多少条数据(默认为10);sort代表组内使用什么字段什么规则排序(默认使用_doc的asc规则排序);_source代表结果中包含document中的那些字段(默认包含全部字段)。

    1. GET cars/_search
    2. {
    3. "size" : 0,
    4. "aggs": {
    5. "group_by_brand": {
    6. "terms": {
    7. "field": "brand"
    8. },
    9. "aggs": {
    10. "top_car": {
    11. "top_hits": {
    12. "size": 1,
    13. "sort": [
    14. {
    15. "price": {
    16. "order": "desc"
    17. }
    18. }
    19. ],
    20. "_source": {
    21. "includes": ["model", "price"]
    22. }
    23. }
    24. }
    25. }
    26. }
    27. }
    28. }

    6、histogram 区间统计
    histogram类似terms,也是进行bucket分组操作的,是根据一个field,实现数据区间分组。
    如:以100万为一个范围,统计不同范围内车辆的销售量和平均价格。那么使用histogram的聚合的时候,field指定价格字段price。区间范围是100万-interval : 1000000。这个时候ES会将price价格区间划分为: [0, 1000000), [1000000, 2000000), [2000000, 3000000)等,依次类推。在划分区间的同时,histogram会类似terms进行数据数量的统计(count),可以通过嵌套aggs对聚合分组后的组内数据做再次聚合分析。

    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "histogram_by_price": {
    5. "histogram": {
    6. "field": "price",
    7. "interval": 1000000
    8. },
    9. "aggs": {
    10. "avg_by_price": {
    11. "avg": {
    12. "field": "price"
    13. }
    14. }
    15. }
    16. }
    17. }
    18. }

    7、date_histogram区间分组
    date_histogram可以对date类型的field执行区间聚合分组,如每月销量,每年销量等。
    如:以月为单位,统计不同月份汽车的销售数量及销售总金额。这个时候可以使用date_histogram实现聚合分组,其中field来指定用于聚合分组的字段,interval指定区间范围(可选值有:year、quarter、month、week、day、hour、minute、second),format指定日期格式化,min_doc_count指定每个区间的最少document(如果不指定,默认为0,当区间范围内没有document时,也会显示bucket分组),extended_bounds指定起始时间和结束时间(如果不指定,默认使用字段中日期最小值所在范围和最大值所在范围为起始和结束时间)。

    1. ES7.x之前的语法
    2. GET /cars/_search
    3. {
    4. "aggs": {
    5. "histogram_by_date" : {
    6. "date_histogram": {
    7. "field": "sold_date",
    8. "interval": "month",
    9. "format": "yyyy-MM-dd",
    10. "min_doc_count": 1,
    11. "extended_bounds": {
    12. "min": "2021-01-01",
    13. "max": "2022-12-31"
    14. }
    15. },
    16. "aggs": {
    17. "sum_by_price": {
    18. "sum": {
    19. "field": "price"
    20. }
    21. }
    22. }
    23. }
    24. }
    25. }
    26. 执行后出现
    27. #! Deprecation: [interval] on [date_histogram] is deprecated, use [fixed_interval] or [calendar_interval] in the future.
    28. 7.X之后
    29. GET /cars/_search
    30. {
    31. "aggs": {
    32. "histogram_by_date" : {
    33. "date_histogram": {
    34. "field": "sold_date",
    35. "calendar_interval": "month",
    36. "format": "yyyy-MM-dd",
    37. "min_doc_count": 1,
    38. "extended_bounds": {
    39. "min": "2021-01-01",
    40. "max": "2022-12-31"
    41. }
    42. },
    43. "aggs": {
    44. "sum_by_price": {
    45. "sum": {
    46. "field": "price"
    47. }
    48. }
    49. }
    50. }
    51. }
    52. }

    8、_global bucket
    在聚合统计数据的时候,有些时候需要对比部分数据和总体数据。
    如:统计某品牌车辆平均价格和所有车辆平均价格。global是用于定义一个全局bucket,这个bucket会忽略query的条件,检索所有document进行对应的聚合统计。

    1. GET /cars/_search
    2. {
    3. "size" : 0,
    4. "query": {
    5. "match": {
    6. "brand": "大众"
    7. }
    8. },
    9. "aggs": {
    10. "volkswagen_of_avg_price": {
    11. "avg": {
    12. "field": "price"
    13. }
    14. },
    15. "all_avg_price" : {
    16. "global": {},
    17. "aggs": {
    18. "all_of_price": {
    19. "avg": {
    20. "field": "price"
    21. }
    22. }
    23. }
    24. }
    25. }
    26. }

    9、aggs+order
    对聚合统计数据进行排序。
    如:统计每个品牌的汽车销量和销售总额,按照销售总额的降序排列。

    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "group_of_brand": {
    5. "terms": {
    6. "field": "brand",
    7. "order": {
    8. "sum_of_price": "desc"
    9. }
    10. },
    11. "aggs": {
    12. "sum_of_price": {
    13. "sum": {
    14. "field": "price"
    15. }
    16. }
    17. }
    18. }
    19. }
    20. }

    如果有多层aggs,执行下钻聚合的时候,也可以根据最内层聚合数据执行排序。
    如:统计每个品牌中每种颜色车辆的销售总额,并根据销售总额降序排列。这就像SQL中的分组排序一样,只能组内数据排序,而不能跨组实现排序。

    1. GET /cars/_search
    2. {
    3. "aggs": {
    4. "group_by_brand": {
    5. "terms": {
    6. "field": "brand"
    7. },
    8. "aggs": {
    9. "group_by_color": {
    10. "terms": {
    11. "field": "color",
    12. "order": {
    13. "sum_of_price": "desc"
    14. }
    15. },
    16. "aggs": {
    17. "sum_of_price": {
    18. "sum": {
    19. "field": "price"
    20. }
    21. }
    22. }
    23. }
    24. }
    25. }
    26. }
    27. }

    10、search+aggs
    聚合类似SQL中的group by子句,search类似SQL中的where子句。在ES中是完全可以将search和aggregations整合起来,执行相对更复杂的搜索统计。
    如:统计某品牌车辆每个季度的销量和销售额。

    1. GET /cars/_search
    2. {
    3. "query": {
    4. "match": {
    5. "brand": "大众"
    6. }
    7. },
    8. "aggs": {
    9. "histogram_by_date": {
    10. "date_histogram": {
    11. "field": "sold_date",
    12. "calendar_interval": "quarter",
    13. "min_doc_count": 1
    14. },
    15. "aggs": {
    16. "sum_by_price": {
    17. "sum": {
    18. "field": "price"
    19. }
    20. }
    21. }
    22. }
    23. }
    24. }

    11、filter+aggs
    在ES中,filter也可以和aggs组合使用,实现相对复杂的过滤聚合分析。
    如:统计10万~50万之间的车辆的平均价格。

    1. GET /cars/_search
    2. {
    3. "query": {
    4. "constant_score": {
    5. "filter": {
    6. "range": {
    7. "price": {
    8. "gte": 100000,
    9. "lte": 500000
    10. }
    11. }
    12. }
    13. }
    14. },
    15. "aggs": {
    16. "avg_by_price": {
    17. "avg": {
    18. "field": "price"
    19. }
    20. }
    21. }
    22. }

    12、聚合中使用filter
    filter也可以使用在aggs句法中,filter的范围决定了其过滤的范围。
    如:统计某品牌汽车最近一年的销售总额。将filter放在aggs内部,代表这个过滤器只对query搜索得到的结果执行filter过滤。如果filter放在aggs外部,过滤器则会过滤所有的数据。

    • 12M/M 表示 12 个月。
    • 1y/y 表示 1年。
    • d 表示天
      1. GET /cars/_search
      2. {
      3. "query": {
      4. "match": {
      5. "brand": "大众"
      6. }
      7. },
      8. "aggs": {
      9. "count_last_year": {
      10. "filter": {
      11. "range": {
      12. "sold_date": {
      13. "gte": "now-12M"
      14. }
      15. }
      16. },
      17. "aggs": {
      18. "sum_of_price_last_year": {
      19. "sum": {
      20. "field": "price"
      21. }
      22. }
      23. }
      24. }
      25. }
      26. }