Bypass rollover phase in ilm

Hi All,

I would like to apply direct delete phase for the index with the criteria of index created > 15 days.

so need to skip the rollover phase , can some one suggest how to configure ilm

my present setting is as below:

PUT _ilm/policy/policy_name
{
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {}
},
"delete": {
"min_age": "15d",
"actions": {
"delete": {}
}
}
}
}
}

Thanks
Dilip

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.