[Logstash] Index Management should use auto_expand_replicas (elastic/x-pack-elasticsearch#3373)

This modifies the default template to use auto_expand_replicas so that a one node cluster can stay green, even while using the Logstash management feature.

Original commit: elastic/x-pack-elasticsearch@b1ddf3af6f
This commit is contained in:
Chris Earle 2017-12-21 10:58:12 -05:00 committed by GitHub
parent b98706183e
commit 76cfdfcef7
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 1,
"auto_expand_replicas": "0-1",
"codec": "best_compression"
}
},