es瓶摆,其實(shí)是有個(gè)內(nèi)置的腳本支持的,可以基于groovy腳本實(shí)現(xiàn)各種各樣的復(fù)雜操作性宏。
基于groovy腳本群井,如何執(zhí)行partial update
準(zhǔn)備數(shù)據(jù)
PUT /test_index/test_type/11
{
"num": 0,
"tags": []
}
(1)內(nèi)置腳本
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)外部腳本,放在es的config/scripts下
編寫(xiě)腳本test-add-tags毫胜,內(nèi)容如下:
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操作
文檔不存在书斜,報(bào)錯(cuò)
POST /test_index/test_type/11/_update
{"doc":{"num":1}}
如果指定的document不存在,就執(zhí)行upsert中的初始化操作指蚁;如果指定的document存在菩佑,就執(zhí)行doc或者script指定的partial update操作
POST /test_index/test_type/11/_update
{
"script": "ctx._source.num+=1",
"upsert": {
"num": 0,
"tags": []
}
}