Quick Answer
etcd uses Raft รขโฌโ all writes go through one leader. Even with more powerful hardware, a single leader serializes all writes รขโฌโ adding more CPU or RAM doesn't add more write throughput. etcd's bottleneck is disk fsync latency (every commit requires fsync). Use fast NVMe SSDs, dedicated etcd nodes, and limit etcd object count rather than scaling hardware vertically.
Answer
Consensus latency, fsync overhead, and majority replication limit scaling.
S
SugharaIQ Editorial Team
Verified Answer
This answer has been peer-reviewed by industry experts holding senior engineering roles to ensure technical accuracy and relevance for modern interview standards.