在Elasticsearch中重命名字段

在Elasticsearch中重命名字段,第1张

在Elasticsearch中重命名字段

Request
字段在您的文档中尚不存在,因此您的脚本需要首先创建它:

POST _reindex{    "source": {        "index": "testindex"    },    "dest": {        "index": "testindex1"    },    "script": {        "inline": "ctx._source.Request = [:]; ctx._source.Request.field3 = ctx._source.remove("field2") ]"    }}

或更短一些:

POST _reindex{    "source": {        "index": "testindex"    },    "dest": {        "index": "testindex1"    },    "script": {        "inline": "ctx._source.Request = [field3: ctx._source.remove("field2") ]"    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4933474.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存