Below is my ILM policy
{
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {
"rollover": {
"max_age": "30d",
"max_size": "50gb"
},
"set_priority": {
"priority": 100
}
}
},
"warm": {
"actions": {
"forcemerge": {
"max_num_segments": 1
},
"set_priority": {
"priority": 50
},
"shrink": {
"number_of_shards": 1
}
}
},
"delete": {
"min_age": "330d",
"actions": {
"delete": {}
}
}
}
}
}
I assigned it the index template successfully. But even though the index exceeds it's size to more than 50 GB but it is still not rolling over to the the warm phase. Instead presisting in the same state. Can somone tell me what's wrong here.