Possible to set default refresh_interval for all new indices?

Excellent, thank you very much.

For future reference to others viewing, this worked for me:

curl -XPUT hostname:9200:/_template/all_indices -d '
{
  "template": "*",
  "settings": {
    "refresh_interval": "30s"
  }
}
`
5 Likes