OmniaGM commented on code in PR #16040:
URL: https://github.com/apache/kafka/pull/16040#discussion_r1611702704


##########
server/src/main/java/org/apache/kafka/server/config/KafkaServerConfigs.java:
##########
@@ -0,0 +1,139 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.kafka.server.config;
+
+import org.apache.kafka.clients.CommonClientConfigs;
+import org.apache.kafka.common.config.TopicConfig;
+import org.apache.kafka.server.authorizer.Authorizer;
+public class KafkaServerConfigs {
+    /** ********* General Configuration ***********/
+    public static final String RESERVED_BROKER_MAX_ID_CONFIG = 
"reserved.broker.max.id";
+    public static final int RESERVED_BROKER_MAX_ID_DEFAULT = 1000;
+    public static final String RESERVED_BROKER_MAX_ID_DOC = "Max number that 
can be used for a broker.id";
+
+    public static final String BROKER_ID_GENERATION_ENABLE_CONFIG = 
"broker.id.generation.enable";
+    public static final boolean BROKER_ID_GENERATION_ENABLE_DEFAULT = true;
+    public static final String BROKER_ID_GENERATION_ENABLE_DOC = "Enable 
automatic broker id generation on the server. When enabled the value configured 
for " + RESERVED_BROKER_MAX_ID_CONFIG + " should be reviewed.";
+
+
+    public static final String BROKER_ID_CONFIG = "broker.id";
+    public static final int BROKER_ID_DEFAULT = -1;
+    public static final String BROKER_ID_DOC = "The broker id for this server. 
If unset, a unique broker id will be generated." +
+            "To avoid conflicts between ZooKeeper generated broker id's and 
user configured broker id's, generated broker ids " +
+            "start from " + RESERVED_BROKER_MAX_ID_CONFIG + " + 1.";
+
+    public static final String MESSAGE_MAX_BYTES_CONFIG = "message.max.bytes";
+    public static final String MESSAGE_MAX_BYTES_DOC = 
TopicConfig.MAX_MESSAGE_BYTES_DOC +
+            "This can be set per topic with the topic level <code>" + 
TopicConfig.MAX_MESSAGE_BYTES_CONFIG + "</code> config.";
+
+    public static final String NUM_NETWORK_THREADS_CONFIG = 
"num.network.threads";
+    public static final int NUM_NETWORK_THREADS_DEFAULT = 3;
+    public static final String NUM_NETWORK_THREADS_DOC = "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.";
+
+    public static final String NUM_IO_THREADS_CONFIG = "num.io.threads";
+    public static final int NUM_IO_THREADS_DEFAULT = 8;
+    public static final String NUM_IO_THREADS_DOC = "The number of threads 
that the server uses for processing requests, which may include disk I/O";
+
+    public static final String BACKGROUND_THREADS_CONFIG = 
"background.threads";
+    public static final int BACKGROUND_THREADS_DEFAULT = 10;
+    public static final String BACKGROUND_THREADS_DOC = "The number of threads 
to use for various background processing tasks";
+
+    public static final String NUM_REPLICA_ALTER_LOG_DIRS_THREADS_CONFIG = 
"num.replica.alter.log.dirs.threads";
+    public static final String NUM_REPLICA_ALTER_LOG_DIRS_THREADS_DOC = "The 
number of threads that can move replicas between log directories, which may 
include disk I/O";
+
+    public static final String QUEUED_MAX_REQUESTS_CONFIG = 
"queued.max.requests";
+    public static final int QUEUED_MAX_REQUESTS_DEFAULT = 500;
+    public static final String QUEUED_MAX_REQUESTS_DOC = "The number of queued 
requests allowed for data-plane, before blocking the network threads";
+
+    public static final String QUEUED_MAX_BYTES_CONFIG = 
"queued.max.request.bytes";
+    public static final int QUEUED_MAX_REQUEST_BYTES_DEFAULT = -1;
+    public static final String QUEUED_MAX_REQUEST_BYTES_DOC = "The number of 
queued bytes allowed before no more requests are read";
+
+    public static final String REQUEST_TIMEOUT_MS_CONFIG = 
CommonClientConfigs.REQUEST_TIMEOUT_MS_CONFIG;
+    public static final int REQUEST_TIMEOUT_MS_DEFAULT = 30000;
+    public static final String REQUEST_TIMEOUT_MS_DOC = 
CommonClientConfigs.REQUEST_TIMEOUT_MS_DOC;
+
+    public static final String SOCKET_CONNECTION_SETUP_TIMEOUT_MS_CONFIG = 
CommonClientConfigs.SOCKET_CONNECTION_SETUP_TIMEOUT_MS_CONFIG;
+    public static final long DEFAULT_SOCKET_CONNECTION_SETUP_TIMEOUT_MS = 
CommonClientConfigs.DEFAULT_SOCKET_CONNECTION_SETUP_TIMEOUT_MS;
+    public static final String SOCKET_CONNECTION_SETUP_TIMEOUT_MS_DOC = 
CommonClientConfigs.SOCKET_CONNECTION_SETUP_TIMEOUT_MS_DOC;
+
+    public static final String SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS_CONFIG = 
CommonClientConfigs.SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS_CONFIG;
+    public static final long SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS = 
CommonClientConfigs.DEFAULT_SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS;
+    public static final String SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS_DOC = 
CommonClientConfigs.SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS_DOC;
+
+    public static final String DELETE_TOPIC_ENABLE_CONFIG = 
"delete.topic.enable";
+    public static final boolean DELETE_TOPIC_ENABLE_DEFAULT = true;
+    public static final String DELETE_TOPIC_ENABLE_DOC = "Enables delete 
topic. Delete topic through the admin tool will have no effect if this config 
is turned off";
+
+    public static final String COMPRESSION_TYPE_CONFIG = 
ServerTopicConfigSynonyms.serverSynonym(TopicConfig.COMPRESSION_TYPE_CONFIG);
+    public static final String COMPRESSION_TYPE_DOC = "Specify the final 
compression type for a given topic. This configuration accepts the standard 
compression codecs " +
+            "('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 
'uncompressed' which is equivalent to no compression; and " +
+            "'producer' which means retain the original compression codec set 
by the producer.";
+
+    public static final String COMPRESSION_GZIP_LEVEL_CONFIG = 
ServerTopicConfigSynonyms.serverSynonym(TopicConfig.COMPRESSION_GZIP_LEVEL_CONFIG);
+    public static final String COMPRESSION_GZIP_LEVEL_DOC = "The compression 
level to use if " + COMPRESSION_TYPE_CONFIG + " is set to 'gzip'.";
+    public static final String COMPRESSION_LZ_4_LEVEL_CONFIG = 
ServerTopicConfigSynonyms.serverSynonym(TopicConfig.COMPRESSION_LZ4_LEVEL_CONFIG);

Review Comment:
   done, published a fix 



-- 
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