什么是index template
- idnex templates - 帮助你设定mappings和settings,并按照一定的规则,自动匹配到新创建的索引之上
- 模板仅在一个索引在被新创建的时候,才会产生作用。修改模板不会影响已经创建的索引
- 你可以设定多个索引模板,这些设置会被"merge"在一起
- 你可以指定“order”的数值,控制“merging的过程”
两个index template
两个index template
index template的工作方式
- 当一个索引被创建时
- 应用elasticsearch默认的settings和mappings
- 应用order数值低的index template中的设定
- 应用order高的index template中的设定,之前的设置会被覆盖
- 应用创建索引时,用户所指定的settings和mappings,并覆盖之前模板中的设定
demo
- 创建2个index templates
- 查看 - 根据名字查看template
- 查看所有templates,_template/*
- 创建一个临时索引,查看replica和数据类型判断
- 将索引名字设为能让index template匹配时,查看所生成的index的mappings和settings
什么是dynamic template
- 根据elasticsearch识别的数据类型,结合字段名称,来动态设定字段类型
- 所有的字符串类型都设定成keyword,或者关闭keyword字段
- is开头的字段都设置成boolean
- long_来头的都设置成long类型
dynamic template
dynamic template
- dynamic template是定义在某个索引的mapping中
- template 有一个名称
- 匹配规则是一个数组
- 为匹配到字段设置mapping
示例
#数字字符串被映射成text,日期字符串被映射成日期
PUT ttemplate/_doc/1
{
"someNumber":"1",
"someDate":"2019/01/01"
}
GET ttemplate/_mapping
#Create a default template
PUT _template/template_default
{
"index_patterns": ["*"],
"order" : 0,
"version": 1,
"settings": {
"number_of_shards": 1,
"number_of_replicas":1
}
}
PUT /_template/template_test
{
"index_patterns" : ["test*"],
"order" : 1,
"settings" : {
"number_of_shards": 1,
"number_of_replicas" : 2
},
"mappings" : {
"date_detection": false,
"numeric_detection": true
}
}
#查看template信息
GET /_template/template_default
GET /_template/temp*
#写入新的数据,index以test开头
PUT testtemplate/_doc/1
{
"someNumber":"1",
"someDate":"2019/01/01"
}
GET testtemplate/_mapping
get testtemplate/_settings
PUT testmy
{
"settings":{
"number_of_replicas":5
}
}
put testmy/_doc/1
{
"key":"value"
}
get testmy/_settings
DELETE testmy
DELETE /_template/template_default
DELETE /_template/template_test
#Dynaminc Mapping 根据类型和字段名
DELETE my_index
PUT my_index/_doc/1
{
"firstName":"Ruan",
"isVIP":"true"
}
GET my_index/_mapping
DELETE my_index
PUT my_index
{
"mappings": {
"dynamic_templates": [
{
"strings_as_boolean": {
"match_mapping_type": "string",
"match":"is*",
"mapping": {
"type": "boolean"
}
}
},
{
"strings_as_keywords": {
"match_mapping_type": "string",
"mapping": {
"type": "keyword"
}
}
}
]
}
}
DELETE my_index
#结合路径
PUT my_index
{
"mappings": {
"dynamic_templates": [
{
"full_name": {
"path_match": "name.*",
"path_unmatch": "*.middle",
"mapping": {
"type": "text",
"copy_to": "full_name"
}
}
}
]
}
}
PUT my_index/_doc/1
{
"name": {
"first": "John",
"middle": "Winston",
"last": "Lennon"
}
}
GET my_index/_search?q=full_name:John
网友评论