Bird
Raised Fist0

You wrote this configuration:

medium📝 Debug Q6 of Q15
Elasticsearch - Cluster Management
You wrote this configuration:
PUT /_cluster/settings
{
  "persistent": {
    "search.remote.remoteC.seeds": ["10.0.0.5:9300"]
  }
}

But cross-cluster search still fails. What is a likely cause?
ACross-cluster search requires a plugin to be installed.
BThe index name is missing in the configuration.
CThe seed address is incorrect or unreachable.
DThe cluster settings must be under "transient" not "persistent".
Step-by-Step Solution
Solution:
  1. Step 1: Review configuration for remote cluster

    The seeds setting must point to reachable nodes in the remote cluster.
  2. Step 2: Identify common failure reasons

    If the seed address is wrong or unreachable, cross-cluster search cannot connect.
  3. Final Answer:

    The seed address is incorrect or unreachable. -> Option C
  4. Quick Check:

    Unreachable seed = cross-cluster search fails [OK]
Quick Trick: Check remote cluster seed addresses for connectivity [OK]
Common Mistakes:
MISTAKES
  • Thinking index name is needed in cluster settings
  • Confusing persistent and transient settings
  • Assuming extra plugins are required

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Elasticsearch Quizzes