ElasticSearch修改mapping

注: 本文基于es版本7.12 请注意自己的版本
mapping是不支持删除属性的,只能新增
官方api地址: Update Mapping API
首先,创建一条index并指定mapping

PUT localhost:9200/test_update
{
    "mappings":{
        "properties":{
            "name":{"type":"text"}
        }
    }
}

result:
{
    "acknowledged": true,
    "shards_acknowledged": true,
    "index": "test_update"
}

创建成功,我们查看一下:

GET localhost:9200/test_update?pretty

result:
{
    "test_update": {
        "aliases": {},
        "mappings": {
            "properties": {
                "name": {
                    "type": "text"
                }
            }
        },
        "settings": {
            "index": {
                "routing": {
                    "allocation": {
                        "include": {
                            "_tier_preference": "data_content"
                        }
                    }
                },
                "number_of_shards": "1",
                "provided_name": "test_update",
                "creation_date": "1631243390352",
                "number_of_replicas": "1",
                "uuid": "GcIht86HTkqBMnbAxeOpJw",
                "version": {
                    "created": "7120199"
                }
            }
        }
    }
}

可以看到,当前只有一条属性为name,我们尝试修改mapping新增一条属性sex

PUT localhost:9200/test_update/_mapping

{
     "properties":{
         "sex":{"type":"text"}
     }
}

result:
{
    "acknowledged": true
}

操作成功,查看一下

GET localhost:9200/test_update?pretty

result:
{
    "test_update": {
        "aliases": {},
        "mappings": {
            "properties": {
                "name": {
                    "type": "text"
                },
                "sex": {
                    "type": "text"
                }
            }
        },
        "settings": {
            "index": {
                "routing": {
                    "allocation": {
                        "include": {
                            "_tier_preference": "data_content"
                        }
                    }
                },
                "number_of_shards": "1",
                "provided_name": "test_update",
                "creation_date": "1631243390352",
                "number_of_replicas": "1",
                "uuid": "GcIht86HTkqBMnbAxeOpJw",
                "version": {
                    "created": "7120199"
                }
            }
        }
    }
}

可以看到新增了一条sex属性

后续补充nested结构…

如有错误,欢迎指正

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值