This is an automated email from the ASF dual-hosted git repository.

chia7712 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 8707e2cb6b0 MINOR: tweak the doc of "num.network.threads" (#13327)
8707e2cb6b0 is described below

commit 8707e2cb6b00dbcb734c7704aba2b6b94f25660d
Author: Chia-Ping Tsai <[email protected]>
AuthorDate: Sun Mar 5 21:02:45 2023 +0800

    MINOR: tweak the doc of "num.network.threads" (#13327)
    
    Reviewers: Luke Chen <[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 7a488477fee..f7b44ce4942 100755
--- a/core/src/main/scala/kafka/server/KafkaConfig.scala
+++ b/core/src/main/scala/kafka/server/KafkaConfig.scala
@@ -709,7 +709,7 @@ object KafkaConfig {
   "start from " + MaxReservedBrokerIdProp + " + 1."
   val MessageMaxBytesDoc = TopicConfig.MAX_MESSAGE_BYTES_DOC +
     s"This can be set per topic with the topic level 
<code>${TopicConfig.MAX_MESSAGE_BYTES_CONFIG}</code> config."
-  val NumNetworkThreadsDoc = "The number of threads that the server uses for 
receiving requests from the network and sending responses to the network"
+  val NumNetworkThreadsDoc = s"The number of threads that the server uses for 
receiving requests from the network and sending responses to the network. 
Noted: each listener (except for controller listener) creates its own thread 
pool."
   val NumIoThreadsDoc = "The number of threads that the server uses for 
processing requests, which may include disk I/O"
   val NumReplicaAlterLogDirsThreadsDoc = "The number of threads that can move 
replicas between log directories, which may include disk I/O"
   val BackgroundThreadsDoc = "The number of threads to use for various 
background processing tasks"

Reply via email to