IT评测·应用市场-qidao123.com

标题: Elasticsearch 认证模拟题 - 10 [打印本页]

作者: 写过一篇    时间: 2024-6-14 20:15
标题: Elasticsearch 认证模拟题 - 10
一、题目

在索引 task8 中,写出满足以下条件的查询
  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 考点

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 编写一个查询模板,并满足以下要求:
使用 查询模板查询 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 考点

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企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4