2013-08-28 19:24:34 -04:00
|
|
|
[[indices-templates]]
|
|
|
|
== Index Templates
|
|
|
|
|
2015-08-24 08:59:03 -04:00
|
|
|
Index templates allow you to define templates that will automatically be
|
2016-03-31 05:15:01 -04:00
|
|
|
applied when new indices are created. The templates include both settings and
|
|
|
|
mappings, and a simple pattern template that controls whether the template
|
2016-04-04 13:29:07 -04:00
|
|
|
should be applied to the new index.
|
2016-03-31 05:15:01 -04:00
|
|
|
|
|
|
|
NOTE: Templates are only applied at index creation time. Changing a template
|
|
|
|
will have no impact on existing indices.
|
|
|
|
|
|
|
|
For example:
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-04-29 10:42:03 -04:00
|
|
|
PUT _template/template_1
|
2013-08-28 19:24:34 -04:00
|
|
|
{
|
2016-04-04 13:29:07 -04:00
|
|
|
"template": "te*",
|
|
|
|
"settings": {
|
|
|
|
"number_of_shards": 1
|
|
|
|
},
|
|
|
|
"mappings": {
|
|
|
|
"type1": {
|
|
|
|
"_source": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"host_name": {
|
|
|
|
"type": "keyword"
|
|
|
|
},
|
|
|
|
"created_at": {
|
|
|
|
"type": "date",
|
|
|
|
"format": "EEE MMM dd HH:mm:ss Z YYYY"
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
2016-04-04 13:29:07 -04:00
|
|
|
}
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
2016-04-04 13:29:07 -04:00
|
|
|
}
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
// CONSOLE
|
2016-09-02 18:22:30 -04:00
|
|
|
// TESTSETUP
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2016-10-08 06:38:45 -04:00
|
|
|
NOTE: Index templates provide C-style /* */ block comments. Comments are allowed
|
|
|
|
everywhere in the JSON document except before to the initial opening curly bracket.
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
Defines a template named template_1, with a template pattern of `te*`.
|
|
|
|
The settings and mappings will be applied to any index name that matches
|
|
|
|
the `te*` template.
|
|
|
|
|
2013-11-26 06:32:25 -05:00
|
|
|
It is also possible to include aliases in an index template as follows:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
PUT _template/template_1
|
2013-11-26 06:32:25 -05:00
|
|
|
{
|
|
|
|
"template" : "te*",
|
|
|
|
"settings" : {
|
|
|
|
"number_of_shards" : 1
|
|
|
|
},
|
|
|
|
"aliases" : {
|
|
|
|
"alias1" : {},
|
|
|
|
"alias2" : {
|
|
|
|
"filter" : {
|
|
|
|
"term" : {"user" : "kimchy" }
|
|
|
|
},
|
|
|
|
"routing" : "kimchy"
|
|
|
|
},
|
|
|
|
"{index}-alias" : {} <1>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[s/^/DELETE _template\/template_1\n/]
|
2013-11-26 06:32:25 -05:00
|
|
|
|
|
|
|
<1> the `{index}` placeholder within the alias name will be replaced with the
|
|
|
|
actual index name that the template gets applied to during index creation.
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[float]
|
2013-09-25 12:17:40 -04:00
|
|
|
[[delete]]
|
2013-08-28 19:24:34 -04:00
|
|
|
=== Deleting a Template
|
|
|
|
|
|
|
|
Index templates are identified by a name (in the above case
|
2014-03-07 08:21:45 -05:00
|
|
|
`template_1`) and can be deleted as well:
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
DELETE /_template/template_1
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
[float]
|
2013-09-25 12:17:40 -04:00
|
|
|
[[getting]]
|
2015-05-08 02:05:12 -04:00
|
|
|
=== Getting templates
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
Index templates are identified by a name (in the above case
|
|
|
|
`template_1`) and can be retrieved using the following:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
GET /_template/template_1
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2013-09-04 14:34:48 -04:00
|
|
|
You can also match several templates by using wildcards like:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
GET /_template/temp*
|
|
|
|
GET /_template/template_1,template_2
|
2013-09-04 14:34:48 -04:00
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
2013-09-04 14:34:48 -04:00
|
|
|
|
2014-05-02 06:37:02 -04:00
|
|
|
To get list of all index templates you can run:
|
2013-01-10 11:27:35 -05:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
GET /_template
|
2013-01-10 11:27:35 -05:00
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
2013-01-10 11:27:35 -05:00
|
|
|
|
2014-11-25 10:46:25 -05:00
|
|
|
[float]
|
|
|
|
[[indices-templates-exists]]
|
|
|
|
=== Templates exists
|
|
|
|
|
|
|
|
Used to check if the template exists or not. For example:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
-----------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
HEAD _template/template_1
|
2014-11-25 10:46:25 -05:00
|
|
|
-----------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
2014-11-25 10:46:25 -05:00
|
|
|
|
|
|
|
The HTTP status code indicates if the template with the given name
|
|
|
|
exists or not. A status code `200` means it exists, a `404` it does not.
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[float]
|
2013-09-25 12:17:40 -04:00
|
|
|
[[multiple-templates]]
|
2013-08-28 19:24:34 -04:00
|
|
|
=== Multiple Template Matching
|
|
|
|
|
|
|
|
Multiple index templates can potentially match an index, in this case,
|
|
|
|
both the settings and mappings are merged into the final configuration
|
|
|
|
of the index. The order of the merging can be controlled using the
|
|
|
|
`order` parameter, with lower order being applied first, and higher
|
|
|
|
orders overriding them. For example:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
PUT /_template/template_1
|
2013-08-28 19:24:34 -04:00
|
|
|
{
|
|
|
|
"template" : "*",
|
|
|
|
"order" : 0,
|
|
|
|
"settings" : {
|
|
|
|
"number_of_shards" : 1
|
|
|
|
},
|
|
|
|
"mappings" : {
|
|
|
|
"type1" : {
|
|
|
|
"_source" : { "enabled" : false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-02 18:22:30 -04:00
|
|
|
PUT /_template/template_2
|
2013-08-28 19:24:34 -04:00
|
|
|
{
|
|
|
|
"template" : "te*",
|
|
|
|
"order" : 1,
|
|
|
|
"settings" : {
|
|
|
|
"number_of_shards" : 1
|
|
|
|
},
|
|
|
|
"mappings" : {
|
|
|
|
"type1" : {
|
|
|
|
"_source" : { "enabled" : true }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[s/^/DELETE _template\/template_1\n/]
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
The above will disable storing the `_source` on all `type1` types, but
|
|
|
|
for indices of that start with `te*`, source will still be enabled.
|
|
|
|
Note, for mappings, the merging is "deep", meaning that specific
|
|
|
|
object/property based mappings can easily be added/overridden on higher
|
|
|
|
order templates, with lower order templates providing the basis.
|