赞
踩
注:ES版本不同语法略有差距
1.新增字段:
1.1. 操作命令:
Curl -H ‘Content-Type:application/json’ -X POST http://IP:9200/索引名/_mapping/索引类型?pretty -d ’{“properties”:{“新字 段名称”:{“type”:”数据类型”}}}’
1.2.响应结果:
2.批量更新:
2.1.操作命令:
curl -X POST -H 'Content-Type:application/json' http://ip:9200/goods_spec/_update_by_query -d '{"query":{"term":{"条件字段":"条件值"}},"script":{"lang":"painless","params":{"names":"需要更新的值"},"inline":"ctx._source.需要更新的字段=params.names"}}'
2.2.响应结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。