es创建模板

curl  -XPOST ip:9200/_template/hot_template  -H 'content-Type:application/json'  -d  '
{ "order" : 10,
  "index_patterns": ["s_*"],
  "settings": {
    "index.number_of_replicas": "1",
    "index.refresh_interval": "10s",
    "index.number_of_shards": "3",
    "index.translog.flush_threshold_size": "1024mb",
    "index.translog.sync_interval" : "120s",
    "index.unassigned.node_left.delayed_timeout": "12h"
  }
}
'

  

原文地址:https://www.cnblogs.com/caonw/p/14914161.html