ElasticSearch 报错 Error 400 (Bad
2021-03-15 本文已影响0人
PHP的点滴
在同一个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 中表的记录。