美文网首页
ElasticSearch 报错 Error 400 (Bad

ElasticSearch 报错 Error 400 (Bad

作者: PHP的点滴 | 来源:发表于2021-03-15 18:37 被阅读0次

    在同一个index下创建两个type时报错,信息如下:

     Error 400 (Bad Request): Rejecting mapping update to [api_log] as the final mapping would have more than 1 type: [xxx_api, xxx_admin] [type=illegal_argument_exception]
    

    原因分析

    从 ES 7.0 开始,Type 被废弃
    在 7.0 以及之后的版本中 Type 被废弃了。一个 index 中只有一个默认的 type,即 _doc。

    ES 的Type 被废弃后,库表合一,Index 既可以被认为对应 MySQL 的 Database,也可以认为对应 table。

    也可以这样理解:

    ES 实例:对应 MySQL 实例中的一个 Database。
    Index 对应 MySQL 中的 Table 。
    Document 对应 MySQL 中表的记录。

    参考链接

    相关文章

      网友评论

          本文标题:ElasticSearch 报错 Error 400 (Bad

          本文链接:https://www.haomeiwen.com/subject/eiakcltx.html