首页 > 其他分享 >es的增删改查

es的增删改查

时间:2024-01-19 12:33:45浏览次数:25  
标签:title GET 改查 test11 match 增删 query type es

1、新增索引

#请求
put 192.168.1.139:9200/test11
{
  "mappings": {
    "properties": {
      "title": {
          "type": "text"
        },
        "year": {
          "type": "date",
          "format": "yyyy"
        },
        "type": {
          "type": "integer"
        }
      }
    },
"settings": {
    "index": {
      "number_of_shards": 5,
      "number_of_replicas": 1
    }
  }
}

# 返回
{
    "acknowledged": true,
    "shards_acknowledged": true,
    "index": "test11"
}

2、新增文档

#请求
post 192.168.1.139:9200/test11/_doc/
{
  "title": "标题",
  "year": "2024-01-18 12:00:34",
  "type": 1,
  "star": 5.2,
  "director": "啦啦啦"
}
#返回
{
    "_index": "test11",
    "_id": "QlS7Go0BnqotedfyWh-N",
    "_version": 1,
    "result": "created",
    "_shards": {
        "total": 2,
        "successful": 1,
        "failed": 0
    },
    "_seq_no": 0,
    "_primary_term": 1
}

3、 查询文档

########### 查询所有
get 192.168.1.139:9200/test11/_search/
{
    "query":{
        "match_all":{
        }
    }
}
#返回
{
    "took": 163,
    "timed_out": false,
    "_shards": {
        "total": 5,
        "successful": 5,
        "skipped": 0,
        "failed": 0
    },
    "hits": {
        "total": {
            "value": 1,
            "relation": "eq"
        },
        "max_score": 1.0,
        "hits": [
            {
                "_index": "test11",
                "_id": "QlS7Go0BnqotedfyWh-N",
                "_score": 1.0,
                "_source": {
                    "title": "标题",
                    "year": "2024-01-18 12:00:34",
                    "type": 1,
                    "star": 5.2,
                    "director": "啦啦啦"
                }
            }
        ]
    }
}

########### 匹配查询(match)
# 查看title 字段有"标题"的
GET /test11/_search
{
    "query":{
        "match": {
          "title": "标题"
        }
    }
}
# 查看所有字段有"标题"
body = {
    "query": {
        "multi_match": {
            "query": "标题",
        }
    }
}
# 查看title字段有"标"or"题"的
GET /test11/_search
{
  "query": {
    "match": {
      "title": {
        "query": "标题",
        "analyzer": "standard"
      }
    }
  }
}
3. 多字段查询
# 查询 title or director 含有标的
GET /test11/_search/
{
  "query": {
    "multi_match": {
      "query": "标",
      "fields": [
        "title",
        "director"
      ]
    }
  }
}
4. 词条匹配(term)
# term 查询被用于精确值 匹配,
# 这些精确值可能是数字、时间、布尔或者那些未分词的字符串(keyword)
GET /test11/_search/
{
    "query":{
        "term":{
            "director":"标题"
        }
    }
}

# term只能完整值匹配,这样就查询不出来
GET /test11/_search/
{
    "query":{
        "term":{
            "director":"标"
        }
    }
}
对于未分词的字符串查找
GET /test11/_search/
{
    "query":{
        "term":{
            "director.keyword":"标"
        }
    }
}
5. 范围
GET test11/_search
{
  "query": {
  "range": {
    "type": {
      "gte": 0,
      "lte": 1
    }
  }
  }
}
6. 复杂查询
# bool有3类查询关系,must(都满足),should(其中一个满足),must_not(都不满足)
GET test11/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "type": 1
          }
        },
        {
          "match": {
            "title": "标"
          }
        },
        {
          "range": {
            "type": {
              "gte": 1,
              "lte": 2
            }
          }
        }
      ]
    }
  }
}
7.通配符
# 诸如我的丧失女友,逆我者亡等等
GET test11/_search
{
    "query":{
        "wildcard":{
            "title":"*标*"
        }
    }
}
8.多字段搜索
GET /test11/_search 
{ 
    "query": { 
        "match": { 
            "title": { 
                "query": "腾讯 收入", 
                "operator": "and"
             } 
        }
   }
} 
9.类似数据表一样,条件、范围、排序
GET test11/_search
{
  "sort":{// 排序
      "type":{"order":"asc"}// 类型排序,asc正序,desc倒叙
  }
#“sort”: { “update_time”: { “order”: “asc”,”mode”:”min” }}//对数字或者日期可以查询多个值当中min、max、avg、sum排序
  "from":0,//条目开始位置
  "size":10,// 每页数量
  "query": {// 查询条件
    "bool": {
      "must": [
        {
          "match": {
            "type": 1
          }
        },
        {
          "match": {
            "title": "标"
          }
        },
        {
          "range": {
            "type": {
              "gte": 1,
              "lte": 2
            }
          }
        }
      ]
    }
  }
}

10、精准匹配match_phrase
GET test11/_search
{
    "query":{
        "match_phrase":{
            "title":"标题1"
        }
    }
}

4、指定id插入文档

PUT /test11/1
{
  "title": "标题11",
  "year": "2024-01-18 12:00:34",
  "type": 1,
  "star": 5.2,
  "director": "啦啦啦"
}

# 返回
{
  "_index" : "test11",
  "_type" : "_doc",
  "_id" : "1",
  "_version" : 1,
  "result" : "created",
  "_shards" : {
    "total" : 2,
    "successful" : 2,
    "failed" : 0
  },
  "_seq_no" : 26,
  "_primary_term" : 4
}

5、指定id获取文档

GET /test11/_doc/1

# 返回
{
  "_index" : "customer",
  "_type" : "_doc",
  "_id" : "1",
  "_version" : 1,
  "_seq_no" : 26,
  "_primary_term" : 4,
  "found" : true,
  "_source" : {
      "title": "标题11",
      "year": "2024-01-18 12:00:34",
      "type": 1,
      "star": 5.2,
      "director": "啦啦啦"
}
}

6、修改文档

# 单个文档单个字段修改
post test11/_update/1
{
    "doc": {
        "title":"标题2222"
    }
}
 
#单个文档全部字段修改
put test11/_doc/1
{
      "title": "标题333",
      "year": "2024-01-19 12:00:34",
      "type": 2,
      "star": 5.3,
      "director": "啦e啦"
}

# 全部文档统一修改
POST /test11/_doc/_update_by_query
{
    "query": {// 根据查询条件修改,若不需要,在这里不需要query,只要script
        "match": {
            "director": "啦e啦"
        }
    },
    "script": {
        "inline": "ctx._source['title'] = '都是这个标题'"
    }
}

7、删除文档

delete test11/_doc/1
 

8、获取索引信息

# 查询所有索引
get /_cat/indices

# 查询单个索引
get /test11/

查询对应索引的数据结构
`GET /test11/_mapping`

查询对应索引的数据条数
GET /test11/_count

9、删除索引

delete /test11

10、修改索引

# 修改名字
## 方法1
为原索引增加别名,则就可以用别名作为新名字
## 方法2
新建一个索引,然后把就数据copy到新索引
# 迁移数据
POST _reindex
{
  "source": {
    "index": "test1"// 旧索引
  },
  "dest": {
    "index": "test2"// 新索引
  }
}

# 修改字段类型
由于es无法修改mapping,则需要曲线救国,可通过新建索引的方式来修改字段类型
 
先新增新的索引

然后吧旧数据倒过来
POST _reindex
{
  "source": {
    "index": "test1"// 旧索引
  },
  "dest": {
    "index": "test2"// 新索引
  }
}

## 此外还可以进行字段名修改,新创建的索引字段名为create_time
 
PUT test2
{
  "mappings": {
    "properties": {
      "create_time": {
        "type": "text"
      }
    }
  }
}
 
POST _reindex
{
  "source": {
    "index": "test1
  },
  "dest": {
    "index": "test2"
  },
  "script": {
    "source": "ctx._source.create_time= ctx._source.remove(\"create_date\")"
  }
}

标签:title,GET,改查,test11,match,增删,query,type,es
From: https://www.cnblogs.com/fizz001/p/17974365

相关文章

  • DES加密算法实现
    实验要求:编写DES算法实现程序,运行DES程序,演示DES加密与解密的过程。在加密时显示明文和密钥,在加密过程中在每一轮执行完毕后显示该轮的输出。(话不多说,直接上代码!!!)实验代码:点击查看代码importbinascii****<details><summary>点击查看代码</summary></details>****class......
  • Educational Codeforces Round 161 (Rated for Div. 2)
    EducationalCodeforcesRound161(RatedforDiv.2)比赛链接A.TrickyTemplate思路:貌似只要想到了就可以,我是记录了一下字符串c和字符串a和b之间的满足数,如果等于n表示一定不存在,否则就是存在的Code:#include<bits/stdc++.h>usingnamespacestd;#defineintlonglon......
  • es 别名
    介绍顾名思义就是为索引起一个外号,一个别名可以对应多个索引;一个索引也可以对应多个别名。场景很多比如order_202201,order_202202,order_202203索引起个别名order,这样好处就是可以关闭历史索引,加快查询数据。比如需求变更导致索引mappings调整,mappings变更......
  • test
    <!--4.br,换行,p标签一般表示一段连续的文字,p内的换行通过br实现,并不成对出现--><p>你觉得<br/>你能<br/>杀!死!我?!</p><!--5.hr:生成一条水平线,主要起装饰作用。单标签,最好闭合(加上/)--><hr/><hrwidth="80%"align="center"color="red"height......
  • HttpWebRequest -- 一个很坑的401 UnAuthorization的解决方法
    昨天,一个新的客户在CallRestfulAPI的时候,出现了401UnAuthorization的错误。查看解决方法,有下面几个原因会导致这个问题:检查 ServicePointManager.SecurityProtocol 设置,并设置 ServicePointManager.ServerCertificateValidationCallback 以至少返回 true(以接......
  • docker构建java镜像,运行镜像出现 no main manifest attribute, in /xxx.jar
    背景本文主要是一个随笔,记录一下出现"nomainmanifestattribute"的解决办法问题原因主要是近期在构建一个镜像,在镜像构建成功后,运行一直提示"nomainmanifestattribute",但是还在想,是不是Dockerfile写错了,后来仔细检查了一下,发现是在pom文件下build节点下配置问题,修改配置......
  • Docker安装PostgreSQL
    Tips:内容仅供参考。保证联网[root@node1/etc/yum.repos.d]#dockersearchpostgres[root@node1/etc/yum.repos.d]#dockerpullpostgres:14.2创建Docker挂载目录[root@node1/etc/yum.repos.d]#mkdir/data/postgresql-p运行一个新PostgreSQL容器dockerrun--namepostgres--......
  • 离线安装PostgreSQL
    Tips:内容仅供参考1.1先安装库文件,其次安装客户端,最后安装服务端rpm-ivhpostgresql12-libs-12.15-1PGDG.rhel7.x86_64.rpmrpm-ivhpostgresql12-12.15-1PGDG.rhel7.x86_64.rpmrpm-ivhpostgresql12-server-12.15-1PGDG.rhel7.x86_64.rpmTips:安装完服务端软件自动创建postgres......
  • @RestControllerAdvice定义返回格式
    原文链接:如何优雅的写Controller层代码?一、拦截异常,封装返回值@RestControllerAdvicepublicclassControllerExceptionAdvice{@ExceptionHandler({BindException.class})publicResultVoMethodArgumentNotValidExceptionHandler(BindExceptione){/......
  • Salesforceの用語解説01
    分かりやすいようにSalesforceの基本用語・オブジェクト・レコード・項目・レポートについて解説しようと思います。まとめますSalesforceをエクセルに例えると1エクセルでいう「シートタブ」はSalesforceでいう「オブジェクト」2エクセルでいう「行」はSalesforceでいう......