【ElasticSearch】ElasticSearch 7.x 預設不在支援指定索引型別 Failed to parse mapping [_doc]: Root mapping definitio

九師兄發表於2020-10-02

在這裡插入圖片描述

1.概述

elasticsearch7預設不在支援指定索引型別,預設索引型別是_doc,如果想改變,則配置include_type_name: true 即可(這個沒有測試,官方文件說的,無論是否可行,建議不要這麼做,因為elasticsearch8後就不在提供該欄位)。官方文件:https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html

2.建立索引模板

2.1 es 6 建立索引模板

PUT /_template/2019
{
   
  "index_patterns": 

相關文章