joel-hamill commented on a change in pull request #11163:
URL: https://github.com/apache/kafka/pull/11163#discussion_r682878756



##########
File path: core/src/main/scala/kafka/server/KafkaConfig.scala
##########
@@ -826,10 +826,11 @@ object KafkaConfig {
     "a write for the write to be considered successful. If this minimum cannot 
be met, " +
     "then the producer will raise an exception (either NotEnoughReplicas or " +
     "NotEnoughReplicasAfterAppend).<br>When used together, min.insync.replicas 
and acks " +
-    "allow you to enforce greater durability guarantees. A typical scenario 
would be to " +
+    "allow you to enforce greater durability guarantees. The leader and its 
followers are " +
+    "all considered replicas so a typical scenario would be to " +
     "create a topic with a replication factor of 3, set min.insync.replicas to 
2, and " +
     "produce with acks of \"all\". This will ensure that the producer raises 
an exception " +
-    "if a majority of replicas do not receive a write."
+    "if a majority of replicas (2) do not receive a write."

Review comment:
       ```suggestion
       "if a majority of replicas, in this case 2, do not receive a write."
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to