Elasticsearch 认证模拟题 - 15

一、题目

原索引 task1 的字段 title 字段包含单词 The,查询 the 可以查出 1200 篇文档。重建 task1 索引为 task1_new,重建后的索引, title 字段查询 the 单词,不能匹配到任何文档。

PUT task1
{
  "mappings": {
    "properties": {
      "title": {
        "type": "text"
      }
    }
  }
}

# 灌入数据
POST task1/_bulk
{"index": {}}
{"title": "the name"}
{"index": {}}
{"title": "the sex"}
{"index": {}}
{"title": "The age"}
{"index": {}}
{"title": "height"}

# 检查查询结果
GET task1/_search
{
  "query": {
    "match": {
      "title": "the"
    }
  }
}
1.1 考点
  1. 分词器里面的停用词
1.2 答案
# 新建索引结构,自定义分词器
PUT task1_new
{
  "settings": {
    "analysis": {
      "analyzer": {
        "my_custom_analyzer": { 
          "char_filter": [],
          "tokenizer": "standard",
          "filter": [
            "my_custom_stop_words_filter"
          ]
        }
      },
      "filter": {
        "my_custom_stop_words_filter": {
          "type": "stop",
          "ignore_case": true,
          "stopwords": ["the" ]
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "title": {
        "type": "text",
        "analyzer": "my_custom_analyzer"
      }
    }
  }
}

# 向新索引灌入数据
POST _reindex
{
  "source": {
    "index": "task1"
  },
  "dest": {
    "index": "task1_new"
  }
}

# 检查查询结果
GET task1_new/_search
{
  "query": {
    "match": {
      "title": "The"
    }
  }
}

二、题目

索引 kibana_sample_data_flights 包含了大量的航班信息,以此写出满足以下条件的查询语句:

  1. 对美国的航班信息按照城市分组,找出平均航班延迟时间最高的城市
{
  "FlightNum": "XLL6LDF",
  "DestCountry": "ZA",
  "OriginWeather": "Thunder & Lightning",
  "OriginCityName": "Jebel Ali",
  "AvgTicketPrice": 642.5951482867853,
  "DistanceMiles": 3942.7713488567097,
  "FlightDelay": false,
  "DestWeather": "Damaging Wind",
  "Dest": "OR Tambo International Airport",
  "FlightDelayType": "No Delay",
  "OriginCountry": "AE",
  "dayOfWeek": 4,
  "DistanceKilometers": 6345.275413654453,
  "timestamp": "2024-05-10T06:09:09",
  "DestLocation": {
    "lat": "-26.1392",
    "lon": "28.246"
  },
  "DestAirportID": "JNB",
  "Carrier": "Logstash Airways",
  "Cancelled": false,
  "FlightTimeMin": 302.15597207878346,
  "Origin": "Al Maktoum International Airport",
  "OriginLocation": {
    "lat": "24.896356",
    "lon": "55.161389"
  },
  "DestRegion": "SE-BD",
  "OriginAirportID": "DWC",
  "OriginRegion": "SE-BD",
  "DestCityName": "Johannesburg",
  "FlightTimeHour": 5.035932867979724,
  "FlightDelayMin": 0
}
2.1 考点
  1. Boolean
  2. 聚合
2.2 答案
GET kibana_sample_data_flights/_search
{
  "size": 0, 
  "query": {
    "bool": {
      "must": [
        {
          "term": {
            "DestCountry": {
              "value": "US"
            }
          }
        },
        {
          "term": {
            "FlightDelay": {
              "value": "true"
            }
          }
        }
      ]
    }
  },
  "aggs": {
    "DestCityName_bucket": {
       "terms": { "field": "DestCityName" },
       "aggs": {
          "avg_FlightDelayMin": { "avg": { "field": "FlightDelayMin" } }
       }
    },
    "max_monthly_sales": {
      "max_bucket": {
        "buckets_path": "DestCityName_bucket>avg_FlightDelayMin" 
      }
    }
  }
}

在这里插入图片描述

相关推荐

  1. Elasticsearch 认证模拟 - 10

    2024-06-09 12:50:05       15 阅读
  2. Elasticsearch 认证模拟 - 12

    2024-06-09 12:50:05       16 阅读
  3. Elasticsearch 认证模拟 - 6

    2024-06-09 12:50:05       14 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-09 12:50:05       5 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-09 12:50:05       5 阅读
  3. 在Django里面运行非项目文件

    2024-06-09 12:50:05       4 阅读
  4. Python语言-面向对象

    2024-06-09 12:50:05       6 阅读

热门阅读

  1. React——组件通信方式

    2024-06-09 12:50:05       18 阅读
  2. 我对Chat-GPT4o的使用感受

    2024-06-09 12:50:05       15 阅读
  3. 【C#】延时关闭电脑、取消关闭电脑

    2024-06-09 12:50:05       14 阅读
  4. 方法调研:DDOS检测有哪些方法?

    2024-06-09 12:50:05       19 阅读
  5. Rust 编程——prost-build 使用

    2024-06-09 12:50:05       19 阅读
  6. 速盾:ddos防护与高防ip区别?

    2024-06-09 12:50:05       12 阅读
  7. 贪心算法详解

    2024-06-09 12:50:05       16 阅读
  8. 自然语言处理(NLP)—— rasa的测试

    2024-06-09 12:50:05       14 阅读
  9. 支持向量机(SVM): 从理论到实践的指南(1)

    2024-06-09 12:50:05       14 阅读
  10. Web前端Text:深入解析与实践应用

    2024-06-09 12:50:05       17 阅读
  11. 多关键字排序

    2024-06-09 12:50:05       14 阅读
  12. opencv

    opencv

    2024-06-09 12:50:05      14 阅读