美文网首页ElasticSearch入门玩转大数据大数据
二十、Elasticsearch演练基于_version进行乐观

二十、Elasticsearch演练基于_version进行乐观

作者: 编程界的小学生 | 来源:发表于2017-07-05 14:26 被阅读150次

    1、上机动手实战演练基于_version进行乐观锁并发控制

    (1)先构造一条数据

    PUT /test_index/test_type/3
    {
      "test_field" : "test test"
    }
    

    (2)新开个浏览器网页,输入Kibana网址,打开两个Kibana客户端,模拟两个客户端,都获取到了同一条数据
    GET /test_index/test_type/3

    两个客户端都返回

    {
      "_index": "test_index",
      "_type": "test_type",
      "_id": "3",
      "_version": 1,
      "found": true,
      "_source": {
        "test_field": "test test"
      }
    }
    

    (3)其中一个客户端,先更新了一下这条数据
    同时带上版本号,确保说,es中的数据的版本号,跟客户端中的数据的版本号是相同的才能修改

    PUT /test_index/test_type/3?version=1
    {
      "test_field" : "test client one"
    }
    

    结果

    {
      "_index": "test_index",
      "_type": "test_type",
      "_id": "3",
      "_version": 2,
      "result": "updated",
      "_shards": {
        "total": 5,
        "successful": 1,
        "failed": 0
      },
      "created": false
    }
    

    结果可看到数据变了,此时版本号是2

    (4)另一个客户端,尝试基于version=1的数据进行修改,同样带上version=1(模拟并发请求),进行乐观锁的并发控制

    PUT /test_index/test_type/3?version=1
    {
      "test_field" : "test client two"
    }
    

    结果:

    {
      "error": {
        "root_cause": [
          {
            "type": "version_conflict_engine_exception",
            "reason": "[test_type][3]: version conflict, current version [2] is different than the one provided [1]",
            "index_uuid": "ey5OuEyFTHe7QhJUvcLDXQ",
            "shard": "2",
            "index": "test_index"
          }
        ],
        "type": "version_conflict_engine_exception",
        "reason": "[test_type][3]: version conflict, current version [2] is different than the one provided [1]",
        "index_uuid": "ey5OuEyFTHe7QhJUvcLDXQ",
        "shard": "2",
        "index": "test_index"
      },
      "status": 409
    }
    

    版本冲突,当前版本是2,要改的1,找不到version=1的数据

    (5)在乐观锁成功阻止并发问题之后,尝试正确的完成更新
    GET /test_index/test_type/3

    结果:

    {
      "_index": "test_index",
      "_type": "test_type",
      "_id": "3",
      "_version": 2,
      "found": true,
      "_source": {
        "test_field": "test client one"
      }
    }
    

    基于最新的数据和版本号,去进行修改,修改后,带上最新的版本号(这个步骤可能会需要反复执行好几次才能成功,主要看并发量多少)

    PUT /test_index/test_type/3?version=2
    {
      "test_field" : "test client two"
    }
    

    结果:

    {
      "_index": "test_index",
      "_type": "test_type",
      "_id": "3",
      "_version": 3,
      "result": "updated",
      "_shards": {
        "total": 5,
        "successful": 1,
        "failed": 0
      },
      "created": false
    }
    

    此时version变成了3

    若有兴趣,欢迎来加入群,【Java初学者学习交流群】:458430385,此群有Java开发人员、UI设计人员和前端工程师。有问必答,共同探讨学习,一起进步!
    欢迎关注我的微信公众号【Java码农社区】,会定时推送各种干货:


    qrcode_for_gh_577b64e73701_258.jpg

    相关文章

      网友评论

      本文标题:二十、Elasticsearch演练基于_version进行乐观

      本文链接:https://www.haomeiwen.com/subject/vakqhxtx.html