Bird
Raised Fist0

Why might cross-cluster search queries have higher latency compared to local cluster queries?

hard🧠 Conceptual Q10 of Q15
Elasticsearch - Cluster Management
Why might cross-cluster search queries have higher latency compared to local cluster queries?
ABecause data is fetched over the network from remote clusters, adding communication delay.
BBecause cross-cluster search requires data to be copied locally before searching.
CBecause Elasticsearch disables caching for cross-cluster queries.
DBecause cross-cluster search uses a different query language.
Step-by-Step Solution
Solution:
  1. Step 1: Understand cross-cluster search mechanics

    Cross-cluster search queries remote clusters over the network, which adds communication time.
  2. Step 2: Evaluate other options

    Data is not copied locally; caching is not disabled; query language remains the same.
  3. Final Answer:

    Because data is fetched over the network from remote clusters, adding communication delay. -> Option A
  4. Quick Check:

    Network fetch causes latency in cross-cluster search [OK]
Quick Trick: Network calls add latency to cross-cluster search queries [OK]
Common Mistakes:
MISTAKES
  • Thinking data is copied locally before search
  • Assuming caching is disabled for cross-cluster queries
  • Believing query language changes

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Elasticsearch Quizzes