Hi
I have created an ILM policy and applied it to my Index -
{
"policy": "my_logs_policy",
"phase_definition": {
"min_age": "0ms",
"actions": {
"rollover": {
"max_size": "30gb"
}
}
},
I have also set the below -
PUT /_cluster/settings
{
"persistent" : {
"indices.lifecycle.poll_interval": "5s"
}
}
However, my index is rolling over at 60GB, and not 30GB, can anyone advise why and how to resolve this?