你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
rochy - rochy_he
赞同来自: rockybean
laoyang360 - 《一本书讲透Elasticsearch》作者,Elastic认证工程师 [死磕Elasitcsearch]知识星球地址:http://t.cn/RmwM3N9;微信公众号:铭毅天下; 博客:https://elastic.blog.csdn.net
赞同来自:
curl -XPOST 'localhost:9200/test/type1/1/_update' -d '{ "script" : "ctx._source.remove(\"name_of_field\")" }'
POST _reindex { "source": { "index": "old_index" }, "dest": { "index": "new_index" }, "script": { "inline": """ if (ctx._type == "bad_type") { ctx._source.remove("bad_field"); } """ } }
POST /_aliases { "actions": [ { "add": { "index": "new_index", "alias": "old_index" } }, { "remove_index": { "index": "old_index" } } ] }
zqc0512 - andy zhou
要回复问题请先登录或注册
3 个回复
rochy - rochy_he
赞同来自: rockybean
laoyang360 - 《一本书讲透Elasticsearch》作者,Elastic认证工程师 [死磕Elasitcsearch]知识星球地址:http://t.cn/RmwM3N9;微信公众号:铭毅天下; 博客:https://elastic.blog.csdn.net
赞同来自:
方式二:
步骤1:
步骤2:
zqc0512 - andy zhou
赞同来自: