Bird
Raised Fist0

You need to set up an Elasticsearch node that preprocesses incoming documents and stores data but does not participate in cluster management. Which node.roles configuration is appropriate?

hard🚀 Application Q8 of Q15
Elasticsearch - Cluster Management

You need to set up an Elasticsearch node that preprocesses incoming documents and stores data but does not participate in cluster management. Which node.roles configuration is appropriate?

Anode.roles: ["master", "ingest"]
Bnode.roles: ["data", "ingest"]
Cnode.roles: ["master", "data"]
Dnode.roles: ["master", "data", "ingest"]
Step-by-Step Solution
Solution:
  1. Step 1: Understand role functions

    Data nodes store data; ingest nodes preprocess documents; master nodes manage cluster state.
  2. Step 2: Exclude master role

    The node should not manage cluster state, so exclude master.
  3. Step 3: Choose roles

    Assign data and ingest roles only.
  4. Final Answer:

    node.roles: ["data", "ingest"] -> Option B
  5. Quick Check:

    Data + ingest roles without master [OK]
Quick Trick: Exclude master role to avoid cluster management [OK]
Common Mistakes:
MISTAKES
  • Including master role when not needed
  • Assigning only ingest role without data
  • Assigning all roles unnecessarily

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Elasticsearch Quizzes