Elasticsearch 认证模拟题 - 10

打印 上一主题 下一主题

主题 937|帖子 937|积分 2811

一、题目

在索引 task8 中,写出满足以下条件的查询

  • title 中包罗 my"或 me
  • 如果 tags 中包罗 romatic movies,该条算分提高,如果不包罗则算分不变。
  1. PUT task8
  2. {
  3.   "mappings": {
  4.     "properties": {
  5.       "title":{
  6.         "type":"text"
  7.       },
  8.       "tags":{
  9.         "type": "keyword"
  10.       }
  11.     }
  12.   }
  13. }
  14. POST task8/_bulk
  15. {"index": {}}
  16. {"title":"my", "tags":["romatic movies"]}
  17. {"index": {}}
  18. {"title":"me", "tags":["movies"]}
复制代码
1.1 考点


  • Boolean
  • Function score
1.2 答案

  1. GET task8/_search
  2. {
  3.   "query": {
  4.     "function_score": {
  5.       "query": {
  6.         "bool": {
  7.           "should": [
  8.             {
  9.               "match": {
  10.                 "title": "my"
  11.               }
  12.             },
  13.             {
  14.               "match": {
  15.                 "title": "me"
  16.               }
  17.             }
  18.           ]
  19.         }
  20.       },
  21.       "functions": [
  22.         {
  23.           "filter": {
  24.             "term": {
  25.               "tags": {
  26.                 "value": "romatic movies"
  27.               }
  28.             }
  29.           },
  30.           "weight": 2
  31.         }
  32.       ],
  33.       "boost": "5",
  34.       "boost_mode": "multiply"
  35.     }
  36.   }
  37. }
复制代码
二、题目

对索引 task9 编写一个查询模板,并满足以下要求:

  • 使用 a_01 参数查询 a 字段
  • 使用 start_date 和 end_date 参数范围查询 timestamp 字段
  • 如果没有提供 end_date 参数,那么结束时间默认是现在
  • 查询结果中 b 字段必须等于 active
使用 查询模板查询 2018年6月1日到现在的数据,a 字段包罗关键字 aaa
  1. # 创建索引
  2. PUT task9
  3. {
  4.   "mappings": {
  5.     "properties": {
  6.       "a":{
  7.         "type": "text"
  8.       },
  9.       "b":{
  10.         "type": "keyword"
  11.       },
  12.       "timestamp":{
  13.         "type": "date"
  14.       }
  15.     }
  16.   }
  17. }
  18. # 写入数据
  19. POST /task9/_bulk
  20. {"index": {}}
  21. {"a":"aaa AAA", "b":"active", "timestamp":"2021-11-11T11:21:21.000Z"}
  22. {"index": {}}
  23. {"a":"aaa AAA", "b":"active", "timestamp":"2022-11-11T11:21:21.000Z"}
  24. {"index": {}}
  25. {"a":"AAA", "b":"b", "timestamp":"2023-11-11T11:21:21.000Z"}
复制代码
2.1 考点


  • 查询模板
  • 查询模板的默认参数
  • Boolean
2.2 答案

  1. # 创建模板
  2. POST _scripts/my_search_template
  3. {
  4.   "script": {
  5.     "lang": "mustache",
  6.     "source": {
  7.       "query": {
  8.     "bool": {
  9.       "must": [
  10.         {
  11.           "match": {
  12.             "a": "{{a_01}}"
  13.           }
  14.         },
  15.         {
  16.           "range": {
  17.             "timestamp": {
  18.               "gte": "{{start_date}}",
  19.               "lte": "{{end_date}}{{^end_date}}now{{/end_date}}"
  20.             }
  21.           }
  22.         },
  23.         {
  24.           "term": {
  25.             "b": {
  26.               "value": "active"
  27.             }
  28.           }
  29.         }
  30.       ]
  31.     }
  32.   }
  33.     }
  34.   }
  35. }
  36. # 预览检索模板
  37. GET _render/template/my_search_template
  38. {
  39.   "params": {
  40.     "a_01": "aaa",
  41.     "start_date": "2018-06-01T00:00:00.000Z"
  42.   }
  43. }
  44. # 查询
  45. GET task9/_search/template
  46. {
  47.   "id": "my_search_template",
  48.   "params": {
  49.     "a_01": "aaa",
  50.     "start_date": "2018-06-01T00:00:00.000Z"
  51.   }
  52. }
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

写过一篇

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表