赞
踩
"type": "keyword",
"ignore_above": 256
}
}
},
"create_time": {
"type": "date",
"format": ["yyyy-MM-dd","yyyy-MM-dd HH:mm:ss"]
}
}
},
"aliases": {
"order": {}
}
},
“version”: 3,
“priority”: 100,
“_meta”:{
“description”:“this is order-template”
}
}
在上面的配置中,index\_patterns用于设置索引模板可以匹配的索引名称,这里使用\*号通配符,表示所有以order开头的索引都会使用上面的模板。这个模板还配置了索引的分片数为3、副本分片数为1、字段映射和别名。priority用来设置模板的优先级,其值越大优先级越高。version表示版本号,\_meta可以保存一些元数据。当模板order-template已经存在时,再次编辑模板配置并发送上述请求可以修改模板的内容。
#### 2.2、查询索引模板
如果想查询索引模板信息,可以使用下面的代码
GET _index_template/order-template
#### 2.3、创建索引
索引模板创建之后,当我们创建索引时,如果索引名称被索引模板匹配到,就会自动加载索引模板的配置到索引映射中。
创建一个索引,索引名为order001
PUT order001
创建成功后,查看索引的配置信息
GET order001
查询成功后,可以在代码运行结果中看到模板中的配置已经在索引order001中得到应用,运行结果如下
{
“order001” : {
“aliases” : {
“order” : { }
},
“mappings” : {
“properties” : {
“create_time” : {
“type” : “date”,
“format” : “[yyyy-MM-dd, yyyy-MM-dd HH:mm:ss]”
},
“order_id” : {
“type” : “keyword”
},
“order_name” : {
“type” : “text”,
“fields” : {
“keyword” : {
“type” : “keyword”,
“ignore_above” : 256
}
}
}
}
},
“settings” : {
“index” : {
“creation_date” : “1698127116029”,
“number_of_shards” : “3”,
“number_of_replicas” : “1”,
“uuid” : “gZG1JzzrTtGC4OrvPwujuA”,
“version” : {
“created” : “7090199”
},
“provided_name” : “order001”
}
}
}
}
如果你想在创建索引时自定义一些配置,可以在创建索引映射时指定,这样就可以覆盖掉索引模板的配置。创建一个索引,名称为order002,自定义分片数为5,副本分片数为2,新增一个字段amount,调整create\_time字段的时间格式,代码如下
PUT order002
{
“settings”: {
“number_of_shards”: 5,
“number_of_replicas”: 2
},
“mappings”: {
“properties”: {
“amount”:{
“type”: “float”
},
“create_time”:{
“type”: “date”,
“format”: [“yyyy/MM/dd HH/mm/ss”]
}
}
}
}
查看order002的索引映射结果
GET order002
查询成功后,可以在代码运行结果中看到order002的索引映射中的配置确实成功覆盖了索引模板中的配置
{
“order002” : {
“aliases” : {
“order” : { }
},
“mappings” : {
“properties” : {
“amount” : {
“type” : “float”
},
“create_time” : {
“type” : “date”,
“format” : “[yyyy/MM/dd HH/mm/ss]”
},
“order_id” : {
“type” : “keyword”
},
“order_name” : {
“type” : “text”,
“fields” : {
“keyword” : {
“type” : “keyword”,
“ignore_above” : 256
}
}
}
}
},
“settings” : {
“index” : {
“creation_date” : “1698127721114”,
“number_of_shards” : “5”,
“number_of_replicas” : “2”,
“uuid” : “K3NlLyaGTOW9c8W8ZcSO5g”,
“version” : {
“created” : “7090199”
},
“provided_name” : “order002”
}
}
}
}
#### 2.4、删除索引模板
删除索引模板,执行如下代码
DELETE _index_template/order-template
#### 2.5、es内置的索引模板
Elasticsearch内置了两个索引模板,索引模板名称分别为metrics和logs,分别用来匹配名称符合logs-\*-\*和metrics-\*-\*的索引。在创建索引和索引模板时要特别注意不要匹配错索引模板,以避免最后索引配置的效果达不到预期。
GET _index_template
{
“index_templates” : [
{
“name” : “metrics”,
“index_template” : {
“index_patterns” : [
“metrics--”
],
“composed_of” : [
“metrics-mappings”,
“metrics-settings”
],
“priority” : 100,
“version” : 0,
“_meta” : {
“managed” : true,
“description” : “default metrics template installed by x-pack”
},
“data_stream” : { }
}
},
{
“name” : “logs”,
“index_template” : {
“index_patterns” : [
“logs--”
],
“composed_of” : [
“logs-mappings”,
“logs-settings”
],
“priority” : 100,
“version” : 0,
“_meta” : {
“managed” : true,
“description” : “default logs template installed by x-pack”
},
“data_stream” : { }
}
}
]
}
### 3、模板组件
按照文章上面的操作我们已经可以快速地创建索引模板,并可以把配置自动应用到匹配的索引中了,但是这样做会使得索引模板的配置内容较多。为了简化索引模板中的配置内容,我们可以把常规的索引设置、映射等内容写成可复用的模板组件,然后在索引模板中引用这些组件,这样模板中的配置内容就会非常简洁,便于移植和管理。
#### 3.1、创建组件模板
创建组件模板component001和component002
PUT _component_template/component001
{
“template”:{
“mappings”:{
“properties”:{
“date”:{
“type”:“date”,
“format”:[“yyy-MM-dd HH:mm:ss”]
}
}
}
}
}
PUT _component_template/component002
{
“template”: {
“settings”: {
“number_of_shards”: “3”,
“number_of_replicas”: “1”
},
“aliases”: {
“mycomp”: {}
}
}
}
#### 3.2、查看组件模板
组件模板创建成功后,我们可以执行代码查看组件模板的端点信息
GET _component_template/component*
{
“component_templates” : [
{
“name” : “component002”,
“component_template” : {
“template” : {
“settings” : {
“index” : {
“number_of_shards” : “3”,
“number_of_replicas” : “1”
}
},
“aliases” : {
“mycomp” : { }
}
}
}
},
{
“name” : “component001”,
“component_template” : {
“template” : {
“mappings” : {
“properties” : {
“date” : {
“format” : [
“yyy-MM-dd HH:mm:ss”
],
“type” : “date”
}
}
}
}
}
}
]
}
#### 3.3、使用组件模板 创建一个索引模板comp-test,把上面两个组件模板加载到索引模板中,索引模板就会匹配所有名称以comp开头的索引。 **自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。** **深知大多数大数据工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!** **因此收集整理了一份《2024年大数据全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。** ![img](https://img-blog.csdnimg.cn/img_convert/1549982e5eecdedb31a7d2e4157bf0ea.png) ![img](https://img-blog.csdnimg.cn/img_convert/be3a5b5994d0144e1d0b8fb85a46ec0e.png) ![img](https://img-blog.csdnimg.cn/img_convert/053955e9b444c3c74f5f31dee2e2c7ab.png) ![img](https://img-blog.csdnimg.cn/img_convert/2ae9c8641c523005768cee04cfd4899b.png) ![img](https://img-blog.csdnimg.cn/img_convert/3d31d9b3ff769ff3038eb7d10ec34343.png) **既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上大数据开发知识点,真正体系化!** **由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新** **如果你觉得这些内容对你有帮助,可以添加VX:vip204888 (备注大数据获取)** ![img](https://img-blog.csdnimg.cn/img_convert/be93cf5c991fc0268b49ea81c89452d6.png) 547)] [外链图片转存中...(img-gYFPQK5O-1712934773548)] [外链图片转存中...(img-IFZASuOg-1712934773548)] [外链图片转存中...(img-EOydHS8d-1712934773548)] **既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上大数据开发知识点,真正体系化!** **由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新** **如果你觉得这些内容对你有帮助,可以添加VX:vip204888 (备注大数据获取)** [外链图片转存中...(img-4qbgt31h-1712934773548)]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。