Index Lifecycle Management has a polling interval that is configurable. The default is 10 minutes but may be changed via the dynamic indices.lifecycle.poll_interval setting.
Currently there is no lower bound, which if set too low could consume more compute resources that are reasonably required. We should enforce a lower bound of 1000ms (1s).
To reproduce:
PUT /_cluster/settings
{
"persistent": {
"indices.lifecycle.poll_interval": "1ms",
"logger.org.elasticsearch.xpack.indexlifecycle": "TRACE"
}
}
(watch the log file)
Index Lifecycle Management has a polling interval that is configurable. The default is 10 minutes but may be changed via the dynamic
indices.lifecycle.poll_intervalsetting.Currently there is no lower bound, which if set too low could consume more compute resources that are reasonably required. We should enforce a lower bound of 1000ms (1s).
To reproduce:
(watch the log file)