赞
踩
在Elasticsearch中,一旦一个字段被创建,它的数据类型通常是固定的,不能直接修改。这是因为Elasticsearch是基于倒排索引的,字段的数据类型在创建索引时确定,并且与索引的结构相关联。
然而,如果确实需要更改字段的数据类型,可以采取以下几种方法:
1、创建中间索引
PUT my_index_1
2、创建mapping映射
- PUT /my_index_1
- {
- "mapping":{
- "info":{
- "properties":{
- "id":{"type":"keyword"}
- }
- }
- }
- }
3、向中间索引备份源索引数据
- POST _reindex
- {
- "source":{
- "index":"my_index"
- },
- "dest":{
- "index":"my_index_1"
- }
- }
确认是否copy过去
GET my_index_1
4、删除旧索引
DELETE my_index
5、新建同名新索引及映射(同上)
6、从中间索引中还原数据(同上)
7、删除中间索引
DELETE my_index_1
1、查询索引结构
GET my_index/_mapping
2、查看索引是否允许被修改
GET my_index/_settings
如果索引是只读状态,那么添加时会出现错误,需要我们执行以下命令:
- PUT my_index/_settings
- {
- "index.blocks.read_only_allow_delete": null
- }
-
-
3、添加新字段
- GET my_index/_mapping/info
- {
- "info": {
- "properties":{
- "groupNo": {
- "type": "keyword"
- },
- "groupName": {
- "type": "keyword"
- }
- }
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。