IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> 五、ElasticSearch-高级查询操作一 -> 正文阅读

[大数据]五、ElasticSearch-高级查询操作一

上一章我们介绍了ES的基础查询操作四、ElasticSearch-基础查询操作,下面我们来介绍ES的高级查询操作

1、多关键字精准查询

  1. terms 查询和 term 查询一样,但它允许你指定多值进行匹配
  2. 如果这个字段包含了指定值中的任何一个值,那么这个文档满足条件,类似于mysql中的in
#查询数据中frist_name中包含name或者like或者tom2的数据
get /my_index_data/_search
{"query":{
  "terms": {
    "first_name": ["name","like","tom3"]
  }
}}

#查询结果
{
  "took" : 36,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 3,
      "relation" : "eq"
    },
    "max_score" : 1.0,
    "hits" : [
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "3",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "tom3", #匹配tom3
          "last_name" : "Smith",
          "age" : 39
        }
      },
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "my name is tom1",#匹配name
          "last_name" : "Smith",
          "age" : 35
        }
      },
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "2",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "I like tom1",#匹配like
          "last_name" : "Smith",
          "age" : 30
        }
      }
    ]
  }
}

2、指定查询字段

  1. 查询指定字段相当于mysql中不使用*查询所有字段,而是查询指定字段
#查询指定字段的数据,这里只查询frist_name和age字段,默认情况下查询的是source中所有的字段
get /my_index_data/_search
{
  "_source":["first_name","age"],
  "query":{
  "terms": {
    "first_name": ["name","like","tom3"]
  }
 }
}

#查询结果 结果列表中只出现了frist_name和age字段
{
  "took" : 6,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 3,
      "relation" : "eq"
    },
    "max_score" : 1.0,
    "hits" : [
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "3",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "tom3", 
          "age" : 39
        }
      },
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "my name is tom1",
          "age" : 35
        }
      },
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "2",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "I like tom1",
          "age" : 30
        }
      }
    ]
  }
}

3、过滤字段

  1. includes:来指定想要显示的字段
  2. excludes:来指定不想要显示的字段
#查询字段中包括first_name和age
get /my_index_data/_search
{
  "_source":{"includes":["first_name","age"]},
  "query":{
  "terms": {
    "first_name": ["name","like"]
  }
 }
}
#####结果显示
{
  "took" : 2,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 3,
      "relation" : "eq"
    },
    "max_score" : 1.0,
    "hits" : [
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "my name is tom1",
          "age" : 35
        }
      },
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "2",
        "_score" : 1.0,
        "_source" : {
          "first_name" : "I like tom1",
          "age" : 30
        }
      }
    ]
  }
}


#查询结果中除了first_name和age之外的元素
get /my_index_data/_search
{
  "_source":{"excludes":["first_name","age"]},
  "query":{
  "terms": {
    "first_name": ["name","like","tom3"]
  }
 }
}

#查询结果
{
  "took" : 2,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 2,
      "relation" : "eq"
    },
    "max_score" : 1.0,
    "hits" : [
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 1.0,
        "_source" : {
          "last_name" : "Smith" #除了 frist_name和age之外只有last_name这个字段
        }
      },
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "2",
        "_score" : 1.0,
        "_source" : {
          "last_name" : "Smith"
        }
      }
    ]
  }
}

4、组合查询

  1. `bool` 把各种其它查询通过 `must` (必须 )、 `must_not` (必须不)、 `should` (应该)的方
    式进行组合
#查询frist_name为tom1 age为30 或者 last_name = 12
get /my_index_data/_search
{
  "query":{
  "bool": {
    "must": [{
      "match":{
      "first_name":"tom1"
    }}
    ],
    "must_not": [
      {"match": {
        "age": "30"
      }}
      ],
      "should": [
        {"match": {
          "last_name": "12"
        }}
      ]
  }
 }
}

#查询结果
{
  "took" : 38,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 1,
      "relation" : "eq"
    },
    "max_score" : 0.8638863,
    "hits" : [
      {
        "_index" : "my_index_data",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 0.8638863,
        "_source" : {
          "first_name" : "my name is tom1",
          "last_name" : "Smith",
          "age" : 35
        }
      }
    ]
  }
}

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-04-27 11:23:07  更:2022-04-27 11:25:36 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:07:52-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码