KCNA · Question #136
What is the minimum of etcd members that are required for a highly available Kubernetes cluster?
The correct answer is D. Three etcd members. Three etcd members (D) is the minimum for a highly available cluster. etcd uses the Raft consensus algorithm, which requires a quorum of (n/2)+1 nodes to agree before committing a write. With 3 members, quorum is 2, so the cluster can tolerate 1 member failure and remain…
Question
What is the minimum of etcd members that are required for a highly available Kubernetes cluster?
Options
- ATwo etcd members.
- BFive etcd members.
- CSix etcd members.
- DThree etcd members
How the community answered
(63 responses)- A2% (1)
- B8% (5)
- C3% (2)
- D87% (55)
Explanation
Three etcd members (D) is the minimum for a highly available cluster. etcd uses the Raft consensus algorithm, which requires a quorum of (n/2)+1 nodes to agree before committing a write. With 3 members, quorum is 2, so the cluster can tolerate 1 member failure and remain operational. Two members provide no fault tolerance - losing one node means losing quorum. Five or six members provide more redundancy but are not the minimum.
Topics
Community Discussion
No community discussion yet for this question.