Elasticsearch - Performance and Scaling
Given this ILM policy snippet, what phase will the index move to after 30 days?
{
"phases": {
"hot": {"min_age": "0d"},
"warm": {"min_age": "7d"},
"cold": {"min_age": "30d"}
}
}