ES之文档修改及删除(入门)

ES之文档修改及删除(入门)

一、全量覆盖
原id为1001的数据内容为:

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1001",
    "_version": 3,
    "_seq_no": 5,
    "_primary_term": 1,
    "found": true,
    "_source": {
        "title": "test",
        "num": 1,
        "date": "20211213"
    }
}

发送【POST】或【PUT】请求:http://127.0.0.1:9200/test-index-3/_doc/1001,参数如下

{
    "test":"abc"
}

执行后返回结果为

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1001",
    "_version": 4,
    "result": "updated",
    "_shards": {
        "total": 2,
        "successful": 1,
        "failed": 0
    },
    "_seq_no": 13,
    "_primary_term": 1
}

修改后查询结果为

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1001",
    "_version": 4,
    "_seq_no": 13,
    "_primary_term": 1,
    "found": true,
    "_source": {
        "test": "abc"
    }
}

二、修改某个字段
原id为1002的数据内容为:

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1002",
    "_version": 2,
    "_seq_no": 7,
    "_primary_term": 1,
    "found": true,
    "_source": {
        "title": "test",
        "num": 1,
        "date": "20211213"
    }
}

发送【POST】请求:http://127.0.0.1:9200/test-index-3/_update/1002,参数如下(不能用PUT协议,如果参数中有新字段,则会新增字段)

{
    "doc" : {
        "title" : "测试",
        "file": 666
    }
}

执行后返回结果为

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1002",
    "_version": 3,
    "result": "updated",
    "_shards": {
        "total": 2,
        "successful": 1,
        "failed": 0
    },
    "_seq_no": 15,
    "_primary_term": 1
}

修改后查询结果为

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1002",
    "_version": 3,
    "_seq_no": 15,
    "_primary_term": 1,
    "found": true,
    "_source": {
        "title": "测试",
        "num": 1,
        "date": "20211213",
        "file": 666
    }
}

三、删除数据
发送【DELETE】请求:http://127.0.0.1:9200/test-index-3/_doc/1001
结果返回如下

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1001",
    "_version": 6,
    "result": "deleted",
    "_shards": {
        "total": 2,
        "successful": 1,
        "failed": 0
    },
    "_seq_no": 18,
    "_primary_term": 1
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值