Confluent
CCDAK · Question #135
A kafka topic has a replication factor of 3 and min.insync.replicas setting of 2. How many brokers can go down before a producer with acks=all can't produce?
The correct answer is C. 1. acks=all and min.insync.replicas=2 means we must have at least 2 brokers up for the partition to
Developing Kafka Producers
Question
A kafka topic has a replication factor of 3 and min.insync.replicas setting of 2. How many brokers can go down before a producer with acks=all can't produce?
Options
- A0
- B2
- C1
- D3
How the community answered
(39 responses)- A10% (4)
- B5% (2)
- C64% (25)
- D21% (8)
Explanation
acks=all and min.insync.replicas=2 means we must have at least 2 brokers up for the partition to
Topics
#min.insync.replicas#acks=all#replication factor#broker failure tolerance
Community Discussion
No community discussion yet for this question.