2013-08-28 19:24:34 -04:00
|
|
|
[[indices-templates]]
|
2019-07-19 14:35:36 -04:00
|
|
|
=== Index Templates
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2019-08-29 13:18:47 -04:00
|
|
|
// tag::index-template-def[]
|
|
|
|
Index templates define <<index-modules-settings,settings>> and <<mapping,mappings>>
|
|
|
|
that you can automatically apply when creating new indices.
|
|
|
|
{es} applies templates to new indices
|
|
|
|
based on an index pattern that matches the index name.
|
|
|
|
// end::index-template-def[]
|
2016-03-31 05:15:01 -04:00
|
|
|
|
2017-10-12 17:52:43 -04:00
|
|
|
NOTE: Templates are only applied at index creation time. Changing a template
|
|
|
|
will have no impact on existing indices. When using the create index API, the
|
|
|
|
settings/mappings defined as part of the create index call will take precedence
|
|
|
|
over any matching settings/mappings defined in the template.
|
2016-03-31 05:15:01 -04:00
|
|
|
|
|
|
|
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-11-10 18:00:30 -05:00
|
|
|
"index_patterns": ["te*", "bar*"],
|
2016-04-04 13:29:07 -04:00
|
|
|
"settings": {
|
|
|
|
"number_of_shards": 1
|
|
|
|
},
|
|
|
|
"mappings": {
|
2019-01-14 16:08:01 -05:00
|
|
|
"_source": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"host_name": {
|
|
|
|
"type": "keyword"
|
2016-04-04 13:29:07 -04:00
|
|
|
},
|
2019-01-14 16:08:01 -05:00
|
|
|
"created_at": {
|
|
|
|
"type": "date",
|
|
|
|
"format": "EEE MMM dd HH:mm:ss Z yyyy"
|
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
|
2016-11-18 10:55:04 -05:00
|
|
|
everywhere in the JSON document except before the initial opening curly bracket.
|
2016-10-08 06:38:45 -04:00
|
|
|
|
2018-10-25 16:51:18 -04:00
|
|
|
Defines a template named `template_1`, with a template pattern of `te*` or `bar*`.
|
2013-08-28 19:24:34 -04:00
|
|
|
The settings and mappings will be applied to any index name that matches
|
2018-10-25 16:51:18 -04:00
|
|
|
the `te*` or `bar*` pattern.
|
2013-08-28 19:24:34 -04:00
|
|
|
|
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
|
|
|
{
|
2016-11-10 18:00:30 -05:00
|
|
|
"index_patterns" : ["te*"],
|
2013-11-26 06:32:25 -05:00
|
|
|
"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
|
|
|
|
2016-11-18 10:55:04 -05:00
|
|
|
<1> the `{index}` placeholder in the alias name will be replaced with the
|
|
|
|
actual index name that the template gets applied to, during index creation.
|
2013-11-26 06:32:25 -05:00
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[float]
|
2013-09-25 12:17:40 -04:00
|
|
|
[[delete]]
|
2019-07-19 14:35:36 -04:00
|
|
|
==== Deleting a Template
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-09-04 10:58:24 -04:00
|
|
|
[float]
|
|
|
|
[[getting]]
|
2019-07-19 14:35:36 -04:00
|
|
|
==== Getting templates
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2019-09-04 10:58:24 -04:00
|
|
|
See <<indices-get-template>>.
|
2013-01-10 11:27:35 -05:00
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[float]
|
2013-09-25 12:17:40 -04:00
|
|
|
[[multiple-templates]]
|
2019-07-19 14:35:36 -04:00
|
|
|
==== Multiple Templates Matching
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
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
|
|
|
{
|
2016-11-10 18:00:30 -05:00
|
|
|
"index_patterns" : ["*"],
|
2013-08-28 19:24:34 -04:00
|
|
|
"order" : 0,
|
|
|
|
"settings" : {
|
|
|
|
"number_of_shards" : 1
|
|
|
|
},
|
|
|
|
"mappings" : {
|
2019-01-14 16:08:01 -05:00
|
|
|
"_source" : { "enabled" : false }
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-02 18:22:30 -04:00
|
|
|
PUT /_template/template_2
|
2013-08-28 19:24:34 -04:00
|
|
|
{
|
2016-11-10 18:00:30 -05:00
|
|
|
"index_patterns" : ["te*"],
|
2013-08-28 19:24:34 -04:00
|
|
|
"order" : 1,
|
|
|
|
"settings" : {
|
|
|
|
"number_of_shards" : 1
|
|
|
|
},
|
|
|
|
"mappings" : {
|
2019-01-14 16:08:01 -05:00
|
|
|
"_source" : { "enabled" : true }
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-09-02 18:22:30 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[s/^/DELETE _template\/template_1\n/]
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2018-06-04 09:42:29 -04:00
|
|
|
The above will disable storing the `_source`, but
|
2016-11-18 10:55:04 -05:00
|
|
|
for indices that start with `te*`, `_source` will still be enabled.
|
2013-08-28 19:24:34 -04:00
|
|
|
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.
|
2016-10-18 11:56:18 -04:00
|
|
|
|
2018-11-29 23:56:32 -05:00
|
|
|
NOTE: Multiple matching templates with the same order value will
|
|
|
|
result in a non-deterministic merging order.
|
|
|
|
|
2016-10-18 11:56:18 -04:00
|
|
|
[float]
|
|
|
|
[[versioning-templates]]
|
2019-07-19 14:35:36 -04:00
|
|
|
==== Template Versioning
|
2016-10-18 11:56:18 -04:00
|
|
|
|
|
|
|
Templates can optionally add a `version` number, which can be any integer value,
|
|
|
|
in order to simplify template management by external systems. The `version`
|
|
|
|
field is completely optional and it is meant solely for external management of
|
|
|
|
templates. To unset a `version`, simply replace the template without specifying
|
|
|
|
one.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
PUT /_template/template_1
|
|
|
|
{
|
2016-11-10 18:00:30 -05:00
|
|
|
"index_patterns" : ["*"],
|
2016-10-18 11:56:18 -04:00
|
|
|
"order" : 0,
|
|
|
|
"settings" : {
|
|
|
|
"number_of_shards" : 1
|
|
|
|
},
|
|
|
|
"version": 123
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
|
2016-11-18 10:55:04 -05:00
|
|
|
To check the `version`, you can
|
2016-10-18 11:56:18 -04:00
|
|
|
<<common-options-response-filtering, filter responses>>
|
|
|
|
using `filter_path` to limit the response to just the `version`:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
GET /_template/template_1?filter_path=*.version
|
|
|
|
--------------------------------------------------
|
2016-10-18 12:57:03 -04:00
|
|
|
// CONSOLE
|
2016-10-18 11:56:18 -04:00
|
|
|
// TEST[continued]
|
|
|
|
|
|
|
|
This should give a small response that makes it both easy and inexpensive to parse:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"template_1" : {
|
|
|
|
"version" : 123
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-10-18 12:57:03 -04:00
|
|
|
// TESTRESPONSE
|