Bird
Raised Fist0

Given this ILM policy snippet, what phase will the index move to after 30 days?

medium📝 Predict Output Q13 of Q15
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"}
  }
}
ACold phase
BWarm phase
CHot phase
DDelete phase
Step-by-Step Solution
Solution:
  1. Step 1: Analyze min_age values for phases

    The policy defines hot from 0 days, warm from 7 days, and cold from 30 days.
  2. Step 2: Determine phase after 30 days

    After 30 days, the index reaches the cold phase because its min_age is 30 days, which is the threshold for cold.
  3. Final Answer:

    Cold phase -> Option A
  4. Quick Check:

    30 days = cold phase start [OK]
Quick Trick: Check min_age values to find current phase [OK]
Common Mistakes:
MISTAKES
  • Choosing warm phase after 30 days
  • Confusing delete phase with cold phase
  • Ignoring min_age thresholds

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Elasticsearch Quizzes