nerdexam
Linux_Foundation

KCNA · Question #43

What are the most important resources to guarantee the performance of an etcd cluster?

The correct answer is B. Network throughput and disk I/O. The most critical resources for guaranteeing the performance of an etcd cluster are network throughput for inter-node communication and disk I/O for persistent data storage.

Submitted by satoshi_tk· May 4, 2026Kubernetes Fundamentals

Question

What are the most important resources to guarantee the performance of an etcd cluster?

Options

  • ACPU and disk capacity.
  • BNetwork throughput and disk I/O.
  • CCPU and RAM memory.
  • DNetwork throughput and CPU.

How the community answered

(42 responses)
  • A
    2% (1)
  • B
    93% (39)
  • D
    5% (2)

Why each option

The most critical resources for guaranteeing the performance of an etcd cluster are network throughput for inter-node communication and disk I/O for persistent data storage.

ACPU and disk capacity.

While CPU and disk capacity are important, disk I/O performance (latency and throughput) is more critical than just raw capacity, and network throughput is often a bigger bottleneck than raw CPU for etcd's distributed nature.

BNetwork throughput and disk I/O.Correct

etcd uses a distributed consensus protocol (Raft) that requires frequent and reliable communication between members, making network throughput essential for replication and leader election; concurrently, etcd persistently stores its data to disk, and high disk I/O performance (especially low-latency random writes) is crucial for durable and fast transaction logging.

CCPU and RAM memory.

CPU and RAM are important, but network throughput for inter-node communication and disk I/O for persistent storage are typically the most significant bottlenecks for etcd's operational performance.

DNetwork throughput and CPU.

Network throughput is critical for etcd's distributed consensus, but disk I/O, especially write latency, is generally a more significant performance factor than CPU for etcd's durable storage operations.

Concept tested: etcd performance requirements

Source: https://etcd.io/docs/v3.5/op-guide/hardware/

Topics

#etcd#Kubernetes control plane#Performance optimization#Distributed systems

Community Discussion

No community discussion yet for this question.

Full KCNA Practice