【elasticsearch】cannot be nested under a type [_doc] unless include_type_name is set to true.

前言

最近要将数据从es5集群迁移到es7集群上,结果遇到了一些错误,这里记录并整理一下。

代码修改

  1. type类型修改
    es7 集群默认只有一个type 名字是_doc

创建索引代码如下:

def create_index(index):
    print("开始创建索引")
    es.indices.create(index=index, body=mappings)
    print("创建索引成功")

mapping 如下:

mappings = {
    "mappings": {
    	"_doc" {
            "properties": {
                "queryId": {
                  "type": "keyword"
                },
                "clientTransactionSupport": {
                  "type": "boolean"
                },
                "proxyuser": {
                  "type": "keyword"
                },
                "source": {
                  "type": "keyword"
                },
                "catalog": {
                  "type": "keyword"
                },
                "schema": {
                  "type": "keyword"
                }
           }
       }
   }
}

报错内容

cannot be nested under a type [_doc] unless include_type_name is set to true.

报错原因

这个异常是说不能在type类型上创建映射 , 在es7中已经在内部取消了, type。 只不过还保留着基本的语法留着过度,因此需要改成这下面这种方法,把索引下面的类型去掉。

mapping如下:

mappings = {
    "mappings": {
            "properties": {
                "queryId": {
                  "type": "keyword"
                },
                "clientTransactionSupport": {
                  "type": "boolean"
                },
                "proxyuser": {
                  "type": "keyword"
                },
                "source": {
                  "type": "keyword"
                },
                "catalog": {
                  "type": "keyword"
                },
                "schema": {
                  "type": "keyword"
                }
           }
   }
}

问题解决!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值