Changed refresh interval for .watch .watch_history* indices from 1 second to 5 minutes.
Closes elastic/elasticsearch#151 Original commit: elastic/x-pack-elasticsearch@5147d635c2
This commit is contained in:
parent
f12ead6a4c
commit
500b86577e
|
@ -5,7 +5,8 @@
|
||||||
"index.number_of_shards": 1,
|
"index.number_of_shards": 1,
|
||||||
"index.number_of_replicas": 1,
|
"index.number_of_replicas": 1,
|
||||||
"index.watcher.template_version": 1,
|
"index.watcher.template_version": 1,
|
||||||
"index.mapper.dynamic" : false
|
"index.mapper.dynamic" : false,
|
||||||
|
"index.refresh_interval" : "5m"
|
||||||
},
|
},
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"watch_record": {
|
"watch_record": {
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
"index.number_of_shards": 1,
|
"index.number_of_shards": 1,
|
||||||
"index.number_of_replicas": 1,
|
"index.number_of_replicas": 1,
|
||||||
"index.watcher.template_version": 1,
|
"index.watcher.template_version": 1,
|
||||||
"index.mapper.dynamic" : false
|
"index.mapper.dynamic" : false,
|
||||||
|
"index.refresh_interval" : "5m"
|
||||||
},
|
},
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"watch": {
|
"watch": {
|
||||||
|
|
Loading…
Reference in New Issue