From ec2676586275dff71193f94041515ae5ea9a4f0e Mon Sep 17 00:00:00 2001 From: Chia-Ping Tsai Date: Sun, 26 Feb 2023 06:21:43 +0800 Subject: [PATCH] MINOR: update docs of 'replica.socket.receive.buffer.bytes' --- core/src/main/scala/kafka/server/KafkaConfig.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/kafka/server/KafkaConfig.scala b/core/src/main/scala/kafka/server/KafkaConfig.scala index 1130cb5a12ac4..6f1aa52e8fa92 100755 --- a/core/src/main/scala/kafka/server/KafkaConfig.scala +++ b/core/src/main/scala/kafka/server/KafkaConfig.scala @@ -888,7 +888,7 @@ object KafkaConfig { val ReplicaLagTimeMaxMsDoc = "If a follower hasn't sent any fetch requests or hasn't consumed up to the leaders log end offset for at least this time," + " the leader will remove the follower from isr" val ReplicaSocketTimeoutMsDoc = "The socket timeout for network requests. Its value should be at least replica.fetch.wait.max.ms" - val ReplicaSocketReceiveBufferBytesDoc = "The socket receive buffer for network requests" + val ReplicaSocketReceiveBufferBytesDoc = "The socket receive buffer for network requests to the leader for replicating data" val ReplicaFetchMaxBytesDoc = "The number of bytes of messages to attempt to fetch for each partition. This is not an absolute maximum, " + "if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned " + "to ensure that progress can be made. The maximum record batch size accepted by the broker is defined via " +