elastichsearch index template模板字

2020-06-17  本文已影响0人  愤愤的有痣青年

索引模板(index template)是指,通过创建一些模板,使后续在创建索引时,若索引名符合模板中index_patterns字段定义的规则时,该模板的配置信息将会应用于该索引上,一般此模板可以用来配置索引的mappings和分片之类的参数.

PUT _template/template_1
{
  "index_patterns": ["te*", "bar*"],
  "settings": {
    "number_of_shards": 1
  },
  "mappings": {
    "_source": {
      "enabled": false
    },
    "properties": {
      "host_name": {
        "type": "keyword"
      },
      "created_at": {
        "type": "date",
        "format": "EEE MMM dd HH:mm:ss Z yyyy"
      }
    }
  }
}

说明

本文参考至此处

上一篇 下一篇

猜你喜欢

热点阅读