博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Elasticsearch 之(8)partial update 原理、 基于groovy使用、 内置乐观锁并发控制
阅读量:4881 次
发布时间:2019-06-11

本文共 1700 字,大约阅读时间需要 5 分钟。

partial update 原理 和 优点

es,其实是有个内置的脚本支持的,可以基于groovy脚本实现各种各样的复杂操作

基于groovy脚本,如何执行partial update

es scripting module,后面会详细讲解,这里就只是初步讲解一下
PUT /test_index/test_type/11{  "num": 0,  "tags": []}
(1)内置脚本
POST /test_index/test_type/11/_update{   "script" : "ctx._source.num+=1"}{  "_index": "test_index",  "_type": "test_type",  "_id": "11",  "_version": 2,  "found": true,  "_source": {    "num": 1,    "tags": []  }}
(2)外部脚本
ctx._source.tags+=new_tag
POST /test_index/test_type/11/_update{  "script": {    "lang": "groovy",     "file": "test-add-tags",    "params": {      "new_tag": "tag1"    }  }}
(3)用脚本删除文档
ctx.op = ctx._source.num == count ? 'delete' : 'none'
POST /test_index/test_type/11/_update{  "script": {    "lang": "groovy",    "file": "test-delete-document",    "params": {      "count": 1    }  }}
(4)upsert操作
POST /test_index/test_type/11/_update{  "doc": {    "num": 1  }}{  "error": {    "root_cause": [      {        "type": "document_missing_exception",        "reason": "[test_type][11]: document missing",        "index_uuid": "6m0G7yx7R1KECWWGnfH1sw",        "shard": "4",        "index": "test_index"      }    ],    "type": "document_missing_exception",    "reason": "[test_type][11]: document missing",    "index_uuid": "6m0G7yx7R1KECWWGnfH1sw",    "shard": "4",    "index": "test_index"  },  "status": 404}
如果指定的document不存在,就执行upsert中的初始化操作;如果指定的document存在,就执行doc或者script指定的partial update操作
POST /test_index/test_type/11/_update{   "script" : "ctx._source.num+=1",   "upsert": {       "num": 0,       "tags": []   }}

partial update 原理

retry策略

再次获取document数据和最新版本,再次更新
post /index/type/id/_update?retry_on_conflict=5&version=6

转载于:https://www.cnblogs.com/wuzhiwei549/p/9113482.html

你可能感兴趣的文章
jsp的C标签一般使用方法以及js接收servlet中的对象及对象数字
查看>>
H5 简介
查看>>
window.frameElement的使用
查看>>
nl命令
查看>>
如何使用jQuery $.post() 方法实现前后台数据传递
查看>>
Using Flash Builder with Flash Professional
查看>>
jsp/post中文乱码问题
查看>>
C# 插入或删除word分页符
查看>>
数据库数据的查询----连接查询
查看>>
找不到可安装的ISAM ,asp.net读取数据丢失,解决的一列里有字符与数字的
查看>>
Java学习笔记三(对象的基本思想一)
查看>>
Java程序(文件操作)
查看>>
KMP算法 最小循环节 最大重复次数
查看>>
Proving Equivalences (强连通,缩点)
查看>>
Period (KMP算法 最小循环节 最大重复次数)
查看>>
sgu 103. Traffic Lights
查看>>
poj 3621 Sightseeing Cows
查看>>
hdu 3666 THE MATRIX PROBLEM
查看>>
TopCoder SRM 176 Deranged
查看>>
java 内存模型
查看>>