From kafka documentation
When a producer sets acks to "all" (or "-1"), this min.insync.replica configuration specifies the minimum number of replicas that must acknowledge a write for the write to be considered successful.
It says when the minimum number of in-sync replicas acknowledge, the write is successful but when i run performance test with min.insync.replica
as 1 and 3 (for a topic of partition=1 and R.F=5 in 5 broker setup), the performance of kafka producer, with acks='all'
, is same.
So, Does min.insync.replica
per-topic configuration affects Kafka producer throughput (ran in isolation) with acks="all"
?