Bird
Raised Fist0

Given the following snapshot creation request:

medium📝 Predict Output Q4 of Q15
Elasticsearch - Cluster Management
Given the following snapshot creation request:
PUT /_snapshot/my_backup/snapshot_2
{
  "indices": "logs-*",
  "ignore_unavailable": true
}

What will be the effect of ignore_unavailable: true?
ASnapshot will delete unavailable indices
BSnapshot will fail if any index is missing
CSnapshot will only include unavailable indices
DSnapshot will skip missing or closed indices without failing
Step-by-Step Solution
Solution:
  1. Step 1: Understand ignore_unavailable parameter

    Setting ignore_unavailable to true allows the snapshot to continue even if some indices are missing or closed.
  2. Step 2: Eliminate incorrect behaviors

    Snapshot does not fail, delete, or include only unavailable indices when this flag is true.
  3. Final Answer:

    Snapshot will skip missing or closed indices without failing -> Option D
  4. Quick Check:

    ignore_unavailable=true means skip missing indices [OK]
Quick Trick: ignore_unavailable=true skips missing indices safely [OK]
Common Mistakes:
MISTAKES
  • Assuming snapshot fails on missing indices
  • Thinking it deletes missing indices
  • Confusing inclusion of unavailable indices

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Elasticsearch Quizzes