Hi @
Can you run
GET myindex/_ilm/explainon one of the indices.
and run
GET _ilm/policy/policy1
Technically, the PUT should look like this
PUT _ilm/policy/policy1
{
"policy": {
"phases": {
"hot": {
"actions": {
"rollover": {
"max_primary_shard_size": "10gb"
},
"set_priority": {
"priority": 100
}
},
"min_age": "0ms"
},
"delete": {
"min_age": "7d",
"actions": {
"delete": {}
}
}
}
}
}