Index.refresh_interval setting in elasticsearch.yml not taking effect

These are two different settings. The setting that you set in the config
file determines how often shards should be automatically refreshed, the
value that you check by running your request shows how often os stats
should be updated.

On Sunday, July 8, 2012 12:14:49 PM UTC-4, T Vinod Gupta wrote:

does this look wrong?

elasticsearch.yml:
index.refresh_interval: 60s

after i restart ES, it doesnt look like taking effect -
curl -XGET 'http://localhost:9200/_cluster/nodes?pretty=true'
...
"os" : {
"refresh_interval" : 1000,
"cpu" : {
....
"process" : {
"refresh_interval" : 1000,

thanks