微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Elasticsearch索引模板index templates怎么创建

这篇文章主要讲解了“Elasticsearch索引模板index templates怎么创建”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Elasticsearch索引模板index templates怎么创建”吧!

一、

索引模板,定义模板,当新索引创建时,自动匹配,并应用定义的模板

新增索引模板(index templates)

我们新建一个索引模板template_1 设置它的主分片为1个。类型有type1且_source disabled

PUT /_template/template_1
{
  "template": "t-*",
  "settings": {
    "number_of_shards":1
  },
  "mappings": {
    "type1":{
      "_source":{
        "enabled":false
      }
    }
  }
}

POST /t-1

GET /t-1/_mapping
{
   "t-1": {
      "mappings": {
         "type1": {
            "_source": {
               "enabled": false
            },
            "properties": {}
         }
      }
   }
}

例子:我们想再创建某个索引时,还为其创建alias

PUT /_template/template_2
{
  "template": "s-*",
  "settings": {
    "number_of_shards":1
  },
  "aliases":{
    "alias1":{
      
    },
    "{index}-alias":{
      
    }
  }
}

POST /s-1

GET /s-1

当创建多个索引模板时,且创建某个索引,被多个索引模板匹配,那么settings和mappings将会合并到一个配置中,并应用这个索引上,合并的顺序由索引模板的order属性来控制。order大的会覆盖之前的配置

PUT /_template/template_1
{
    "template":"*",
    "order":0,
    "settings":{
        "number_of_shards":1
    },
    "mappings":{
        "type1":{
            "_source":{
                "enabled":false
            }
        }
    }
}

PUT /_template/template_2
{
    "template":"tt-*",
    "order":1,
    "settings":{
        "number_of_shards":1
    },
    "mappings":{
        "type1":{
            "_source":{
                "enabled":true
            }
        }
    }
}

POST /tt-1            => 会被上述两个模板都匹配,对于_source属性 order=1的会覆盖order=0 即 enabled:true

文件配置:我们可以再 config/templates目录下添加json的配置文件

感谢各位的阅读,以上就是“Elasticsearch索引模板index templates怎么创建”的内容了,经过本文的学习后,相信大家对Elasticsearch索引模板index templates怎么创建这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程之家,小编将为大家推送更多相关知识点的文章,欢迎关注!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐