模拟索引模板 API编辑

返回特定 索引模板 将应用的索引配置。

POST /_index_template/_simulate/template_1

请求编辑

POST /_index_template/_simulate/<index-template>

先决条件编辑

  • 如果启用了 Elasticsearch 安全功能,则您必须拥有 manage_index_templatesmanage 集群权限 才能使用此 API。

路径参数编辑

<index-template>
(可选,字符串)要模拟的索引模板的名称。要在将模板配置添加到集群之前对其进行测试,请省略此参数并在请求正文中指定模板配置。

查询参数编辑

create
(可选,布尔值)如果为 true,则仅当没有现有模板与相同的索引模式匹配时,才会使用正文中传递的模板。如果为 false,则模拟将使用优先级最高的模板。请注意,在任何一种情况下都不会永久添加或更新模板;它仅用于模拟。默认为 false
master_timeout
(可选,时间单位)等待主节点的时间段。如果在超时到期之前主节点不可用,则请求将失败并返回错误。默认为 30s。也可以设置为 -1 以指示请求永不超时。
include_defaults
(可选,布尔值) [预览] 此功能处于技术预览阶段,可能会在未来的版本中更改或删除。Elastic 将努力解决任何问题,但技术预览版中的功能不受官方 GA 功能的支持 SLA 的约束。 中的功能。如果为 true,则在响应中返回所有默认设置。默认为 false

请求正文编辑

data_stream

(可选,对象)如果包含此对象,则该模板用于创建数据流及其后备索引。支持空对象。

数据流需要匹配的索引模板,其中包含 data_stream 对象。请参阅创建索引模板

data_stream 的属性
allow_custom_routing
(可选,布尔值)如果为 true,则数据流支持 自定义路由。默认为 false
hidden
(可选,布尔值)如果为 true,则数据流将被 隐藏。默认为 false
index_mode

(可选,字符串)要创建的数据流的类型。有效值为 null(常规数据流)和 time_series时间序列数据流)。

如果为 time_series,则每个后备索引都有一个 index.mode 索引设置为 time_series

index_patterns

(必需,字符串数组)用于在创建过程中匹配数据流和索引名称的通配符 (*) 表达式数组。

Elasticsearch 包含多个内置索引模板。为避免与这些模板发生命名冲突,请参阅避免索引模式冲突

_meta
(可选,对象)有关索引模板的可选用户元数据。可以有任何内容。此映射不是由 Elasticsearch 自动生成的。
priority
(可选,整数)用于确定创建新数据流或索引时索引模板优先级的优先级。将选择优先级最高的索引模板。如果未指定优先级,则将模板视为优先级为 0(最低优先级)。此数字不是由 Elasticsearch 自动生成的。
template

(可选,对象)要应用的模板。它可以选择性地包含 aliasesmappingssettings 配置。

template 的属性
aliases

(可选,对象的对象)要添加的别名。

如果索引模板包含 data_stream 对象,则这些是数据流别名。否则,这些是索引别名。数据流别名忽略 index_routingroutingsearch_routing 选项。

aliases 对象的属性
<alias>

(必需,对象)键是别名。索引别名支持 日期数学

对象正文包含别名的选项。支持空对象。

<alias> 的属性
filter
(可选,查询 DSL 对象)用于限制别名可以访问的文档的查询。
index_routing
(可选,字符串)用于将索引操作路由到特定分片的值。如果指定,这将覆盖索引操作的 routing 值。
is_hidden
(可选,布尔值)如果为 true,则别名将被 隐藏。默认为 false。别名的所有索引必须具有相同的 is_hidden 值。
is_write_index
(可选,布尔值)如果为 true,则索引是别名的 写入索引。默认为 false
routing
(可选,字符串)用于将索引和搜索操作路由到特定分片的值。
search_routing
(可选,字符串)用于将搜索操作路由到特定分片的值。如果指定,这将覆盖搜索操作的 routing 值。
mappings

(可选,映射对象)索引中字段的映射。如果指定,此映射可以包括

请参阅映射

settings
(可选,索引设置对象)索引的配置选项。请参阅索引设置
version
(可选,整数)用于在外部管理索引模板的版本号。此数字不是由 Elasticsearch 自动生成的。
deprecated
(可选,布尔值)将此索引模板标记为已弃用。创建或更新使用已弃用组件的未弃用索引模板时,Elasticsearch 将发出弃用警告。

响应正文编辑

overlapping

(数组)任何被指定模板取代的模板。

overlapping 的属性
index_patterns
(数组)被取代的模板适用的索引模式。
name
(字符串)被取代的模板的名称。
template

(对象)将应用于匹配索引的设置、映射和别名。

template 的属性
aliases

(可选,对象的对象)索引的别名。如果索引模板包含 data_stream,则不支持此参数。

aliases 对象的属性
<alias>

(必需,对象)键是别名。索引别名支持 日期数学

对象正文包含别名的选项。支持空对象。

<alias> 的属性
filter
(可选,查询 DSL 对象)用于限制别名可以访问的文档的查询。
index_routing
(可选,字符串)用于将索引操作路由到特定分片的值。如果指定,这将覆盖索引操作的 routing 值。
is_hidden
(可选,布尔值)如果为 true,则别名将被 隐藏。默认为 false。别名的所有索引必须具有相同的 is_hidden 值。
is_write_index
(可选,布尔值)如果为 true,则索引是别名的 写入索引。默认为 false
routing
(可选,字符串)用于将索引和搜索操作路由到特定分片的值。
search_routing
(可选,字符串)用于将搜索操作路由到特定分片的值。如果指定,这将覆盖搜索操作的 routing 值。
mappings

(可选,映射对象)索引中字段的映射。如果指定,此映射可以包括

请参阅映射

settings
(可选,索引设置对象)索引的配置选项。请参阅索引设置

示例编辑

模拟现有模板编辑

以下示例创建并模拟了一个组合模板

response = client.cluster.put_component_template(
  name: 'ct1',
  body: {
    template: {
      settings: {
        'index.number_of_shards' => 2
      }
    }
  }
)
puts response

response = client.cluster.put_component_template(
  name: 'ct2',
  body: {
    template: {
      settings: {
        'index.number_of_replicas' => 0
      },
      mappings: {
        properties: {
          "@timestamp": {
            type: 'date'
          }
        }
      }
    }
  }
)
puts response

response = client.indices.put_index_template(
  name: 'final-template',
  body: {
    index_patterns: [
      'my-index-*'
    ],
    composed_of: [
      'ct1',
      'ct2'
    ],
    priority: 5
  }
)
puts response

response = client.indices.simulate_template(
  name: 'final-template'
)
puts response
PUT /_component_template/ct1                   
{
  "template": {
    "settings": {
      "index.number_of_shards": 2
    }
  }
}

PUT /_component_template/ct2                    
{
  "template": {
    "settings": {
      "index.number_of_replicas": 0
    },
    "mappings": {
      "properties": {
        "@timestamp": {
          "type": "date"
        }
      }
    }
  }
}

PUT /_index_template/final-template            
{
  "index_patterns": ["my-index-*"],
  "composed_of": ["ct1", "ct2"],
  "priority": 5
}

POST /_index_template/_simulate/final-template 

创建一个组件模板 (ct1),将分片数设置为 2

创建一个组件模板 (ct2),将副本数设置为 0 并定义一个映射

创建一个使用组件模板的索引模板 (final-template)

显示 final-template 应用的配置

响应显示 final-template 应用的索引设置、映射和别名

{
  "template" : {
    "settings" : {
      "index" : {
        "number_of_shards" : "2",  
        "number_of_replicas" : "0", 
        "routing" : {
          "allocation" : {
            "include" : {
              "_tier_preference" : "data_content"
            }
          }
        }
      }
    },
    "mappings" : {                 
      "properties" : {
        "@timestamp" : {
          "type" : "date"
        }
      }
    },
    "aliases" : { }
  },
  "overlapping" : [ ]
}

ct1 中的分片数

ct2 中的副本数

ct1 中的映射

模拟任意模板配置编辑

要在将模板添加到集群之前查看将应用哪些设置,您可以在请求正文中传递模板配置。如果指定的模板的优先级高于现有模板,则将使用该模板进行模拟。

response = client.indices.simulate_template(
  body: {
    index_patterns: [
      'my-index-*'
    ],
    composed_of: [
      'ct2'
    ],
    priority: 10,
    template: {
      settings: {
        'index.number_of_replicas' => 1
      }
    }
  }
)
puts response
POST /_index_template/_simulate
{
  "index_patterns": ["my-index-*"],
  "composed_of": ["ct2"],
  "priority": 10,
  "template": {
    "settings": {
      "index.number_of_replicas": 1
    }
  }
}

响应显示任何优先级较低的重叠模板。

{
  "template" : {
    "settings" : {
      "index" : {
        "number_of_replicas" : "1",
        "routing" : {
          "allocation" : {
            "include" : {
              "_tier_preference" : "data_content"
            }
          }
        }
      }
    },
    "mappings" : {
      "properties" : {
        "@timestamp" : {
          "type" : "date"
        }
      }
    },
    "aliases" : { }
  },
  "overlapping" : [
    {
      "name" : "final-template",
      "index_patterns" : [
        "my-index-*"
      ]
    }
  ]
}