This is an automated email from the ASF dual-hosted git repository.
guozhang pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 30795674615 MINOR: update docs of
'replica.socket.receive.buffer.bytes' (#13308)
30795674615 is described below
commit 30795674615180af43377c79d106c559102e2522
Author: Chia-Ping Tsai <[email protected]>
AuthorDate: Tue Feb 28 03:29:44 2023 +0800
MINOR: update docs of 'replica.socket.receive.buffer.bytes' (#13308)
Reviewers: Guozhang Wang <[email protected]>
---
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 1130cb5a12a..6f1aa52e8fa 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 " +