I am using ECK 8.14 and here is the reflected Index Lifecycle Policies(ILM) content:
PUT _ilm/policy/ECK-ILM
{
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {
"set_priority": {
"priority": 100
},
"rollover": {
"max_age": "7d",
"max_docs": 7,
"max_primary_shard_size": "30gb",
"max_size": "5gb"
}
}
},
"warm": {
"min_age": "7d",
"actions": {
"set_priority": {
"priority": 50
}
}
},
"delete": {
"min_age": "7d",
"actions": {
"delete": {
"delete_searchable_snapshot": true
}
}
}
}
}
}
However, in reality, the above policy does not seem to be reflected.
I added the ILM policy, but it doesn't seem to be reflected. I'm writing this to get help on how to secure capacity as capacity is saturated. Please clear it manually or let me know if I missed something in the settings.