이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 1. Broker configuration properties
This section lists the configuration properties for Kafka brokers.
node.idThe node ID associated with the roles this process is playing when
process.rolesis non-empty. This is required configuration when running in KRaft mode.- Type: int
- Default:
- Valid Values: [0,…]
- Importance: high
- Dynamic update: read-only
process.rolesThe roles that this process plays: 'broker', 'controller', or 'broker,controller' if it is both.
- Type: list
- Default:
- Valid Values: [broker, controller]
- Importance: high
- Dynamic update: read-only
add.partitions.to.txn.retry.backoff.max.msThe maximum allowed timeout for adding partitions to transactions on the server side. It only applies to the actual add partition operations, not the verification. It will not be effective if it is larger than request.timeout.ms.
- Type: int
- Default: 100
- Valid Values: [0,…]
- Importance: high
- Dynamic update: read-only
add.partitions.to.txn.retry.backoff.msThe server-side retry backoff when the server attemptsto add the partition to the transaction.
- Type: int
- Default: 20
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
advertised.listenersSpecifies the listener addresses that the Kafka brokers will advertise to clients and other brokers. The config is useful where the actual listener configuration
listenersdoes not represent the addresses that clients should use to connect, such as in cloud environments. The addresses are published to and managed by the controller, the brokers pull these data from the controller as needed. In IaaS environments, this may need to be different from the interface to which the broker binds. If this is not set, the value forlistenerswill be used. Unlikelisteners, it is not valid to advertise the 0.0.0.0 meta-address. Also unlikelisteners, there can be duplicated ports in this property, so that one listener can be configured to advertise another listener’s address. This can be useful in some cases where external load balancers are used.- Type: string
- Valid Values:
- Importance: high
- Dynamic update: read-only
auto.create.topics.enableEnable auto creation of topic on the server.
- Type: boolean
- Default: true
- Valid Values:
- Importance: high
- Dynamic update: read-only
auto.leader.rebalance.enableEnables auto leader balancing. A background thread checks the distribution of partition leaders at regular intervals, configurable by leader.imbalance.check.interval.seconds. If the leader is imbalanced, leader rebalance to the preferred leader for partitions is triggered.
- Type: boolean
- Default: true
- Valid Values:
- Importance: high
- Dynamic update: read-only
background.threadsThe number of threads to use for various background processing tasks.
- Type: int
- Default: 10
- Valid Values: [1,…]
- Importance: high
- Dynamic update: cluster-wide
broker.idThe broker id for this server.
- Type: int
- Default: -1
- Valid Values:
- Importance: high
- Dynamic update: read-only
compression.typeSpecify 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.
- Type: string
- Default: producer
- Valid Values: [uncompressed, zstd, lz4, snappy, gzip, producer]
- Importance: high
- Dynamic update: cluster-wide
controller.listener.namesA comma-separated list of the names of the listeners used by the controller. This is required when communicating with the controller quorum, the broker will always use the first listener in this list.
- Type: string
- Valid Values:
- Importance: high
- Dynamic update: read-only
controller.quorum.bootstrap.serversList of endpoints to use for bootstrapping the cluster metadata. The endpoints are specified in comma-separated list of
{host}:{port}entries. For example:localhost:9092,localhost:9093,localhost:9094.- Type: list
- Default: ""
- Valid Values: non-empty list
- Importance: high
- Dynamic update: read-only
controller.quorum.election.backoff.max.msMaximum time in milliseconds before starting new elections. This is used in the binary exponential backoff mechanism that helps prevent gridlocked elections.
- Type: int
- Default: 1000 (1 second)
- Valid Values:
- Importance: high
- Dynamic update: read-only
controller.quorum.election.timeout.msMaximum time in milliseconds to wait without being able to fetch from the leader before triggering a new election.
- Type: int
- Default: 1000 (1 second)
- Valid Values:
- Importance: high
- Dynamic update: read-only
controller.quorum.fetch.timeout.msMaximum time without a successful fetch from the current leader before becoming a candidate and triggering an election for voters; Maximum time a leader can go without receiving valid fetch or fetchSnapshot request from a majority of the quorum before resigning.
- Type: int
- Default: 2000 (2 seconds)
- Valid Values:
- Importance: high
- Dynamic update: read-only
controller.quorum.votersMap of id/endpoint information for the set of voters in a comma-separated list of
{id}@{host}:{port}entries. For example:1@localhost:9092,2@localhost:9093,3@localhost:9094.- Type: list
- Default: ""
- Valid Values: non-empty list
- Importance: high
- Dynamic update: read-only
delete.topic.enableEnables delete topic. Delete topic through the admin tool will have no effect if this config is turned off.
- Type: boolean
- Default: true
- Valid Values:
- Importance: high
- Dynamic update: read-only
early.start.listenersA comma-separated list of listener names which may be started before the authorizer has finished initialization. This is useful when the authorizer is dependent on the cluster itself for bootstrapping, as is the case for the StandardAuthorizer (which stores ACLs in the metadata log.) By default, all listeners included in controller.listener.names will also be early start listeners. A listener should not appear in this list if it accepts external traffic.
- Type: string
- Valid Values:
- Importance: high
- Dynamic update: read-only
group.coordinator.threadsThe number of threads used by the group coordinator.
- Type: int
- Default: 4
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
leader.imbalance.check.interval.secondsThe frequency with which the partition rebalance check is triggered by the controller.
- Type: long
- Default: 300
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
listenersListener List - Comma-separated list of URIs we will listen on and the listener names. If the listener name is not a security protocol,
listener.security.protocol.mapmust also be set. Listener names and port numbers must be unique unless one listener is an IPv4 address and the other listener is an IPv6 address (for the same port). Specify hostname as 0.0.0.0 to bind to all interfaces. Leave hostname empty to bind to default interface. Examples of legal listener lists:PLAINTEXT://myhost:9092,SSL://:9091CLIENT://0.0.0.0:9092,REPLICATION://localhost:9093PLAINTEXT://127.0.0.1:9092,SSL://[::1]:9092.- Type: string
- Default: PLAINTEXT://:9092
- Valid Values:
- Importance: high
- Dynamic update: per-broker
log.dirThe directory in which the log data is kept (supplemental for log.dirs property).
- Type: string
- Default: /tmp/kafka-logs
- Valid Values:
- Importance: high
- Dynamic update: read-only
log.dirsA comma-separated list of the directories where the log data is stored. If not set, the value in log.dir is used.
- Type: string
- Valid Values:
- Importance: high
- Dynamic update: read-only
log.flush.interval.messagesThe number of messages accumulated on a log partition before messages are flushed to disk.
- Type: long
- Default: 9223372036854775807
- Valid Values: [1,…]
- Importance: high
- Dynamic update: cluster-wide
log.flush.interval.msThe maximum time in ms that a message in any topic is kept in memory before flushed to disk. If not set, the value in log.flush.scheduler.interval.ms is used.
- Type: long
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
log.flush.offset.checkpoint.interval.msThe frequency with which we update the persistent record of the last flush which acts as the log recovery point.
- Type: int
- Default: 60000 (1 minute)
- Valid Values: [0,…]
- Importance: high
- Dynamic update: read-only
log.flush.scheduler.interval.msThe frequency in ms that the log flusher checks whether any log needs to be flushed to disk.
- Type: long
- Default: 9223372036854775807
- Valid Values:
- Importance: high
- Dynamic update: read-only
log.flush.start.offset.checkpoint.interval.msThe frequency with which we update the persistent record of log start offset.
- Type: int
- Default: 60000 (1 minute)
- Valid Values: [0,…]
- Importance: high
- Dynamic update: read-only
log.retention.bytesThe maximum size of the log before deleting it.
- Type: long
- Default: -1
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
log.retention.hoursThe number of hours to keep a log file before deleting it (in hours), tertiary to log.retention.ms property.
- Type: int
- Default: 168
- Valid Values:
- Importance: high
- Dynamic update: read-only
log.retention.minutesThe number of minutes to keep a log file before deleting it (in minutes), secondary to log.retention.ms property. If not set, the value in log.retention.hours is used.
- Type: int
- Valid Values:
- Importance: high
- Dynamic update: read-only
log.retention.msThe number of milliseconds to keep a log file before deleting it (in milliseconds), If not set, the value in log.retention.minutes is used. If set to -1, no time limit is applied.
- Type: long
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
log.roll.hoursThe maximum time before a new log segment is rolled out (in hours), secondary to log.roll.ms property.
- Type: int
- Default: 168
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
log.roll.jitter.hoursThe maximum jitter to subtract from logRollTimeMillis (in hours), secondary to log.roll.jitter.ms property.
- Type: int
- Default: 0
- Valid Values: [0,…]
- Importance: high
- Dynamic update: read-only
log.roll.jitter.msThe maximum jitter to subtract from logRollTimeMillis (in milliseconds). If not set, the value in log.roll.jitter.hours is used.
- Type: long
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
log.roll.msThe maximum time before a new log segment is rolled out (in milliseconds). If not set, the value in log.roll.hours is used.
- Type: long
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
log.segment.bytesThe maximum size of a single log file.
- Type: int
- Default: 1073741824 (1 gibibyte)
- Valid Values: [1048576,…]
- Importance: high
- Dynamic update: cluster-wide
log.segment.delete.delay.msThe amount of time to wait before deleting a file from the filesystem. If the value is 0 and there is no file to delete, the system will wait 1 millisecond. Low value will cause busy waiting.
- Type: long
- Default: 60000 (1 minute)
- Valid Values: [0,…]
- Importance: high
- Dynamic update: cluster-wide
message.max.bytesThe largest record batch size allowed by Kafka (after compression if compression is enabled). If this is increased and there are consumers older than 0.10.2, the consumers' fetch size must also be increased so that they can fetch record batches this large. In the latest message format version, records are always grouped into batches for efficiency. In previous message format versions, uncompressed records are not grouped into batches and this limit only applies to a single record in that case.This can be set per topic with the topic level
max.message.bytesconfig.- Type: int
- Default: 1048588
- Valid Values: [0,…]
- Importance: high
- Dynamic update: cluster-wide
metadata.log.dirThis configuration determines where we put the metadata log. If it is not set, the metadata log is placed in the first log directory from log.dirs.
- Type: string
- Valid Values:
- Importance: high
- Dynamic update: read-only
metadata.log.max.record.bytes.between.snapshotsThis is the maximum number of bytes in the log between the latest snapshot and the high-watermark needed before generating a new snapshot. The default value is 20971520. To generate snapshots based on the time elapsed, see the
metadata.log.max.snapshot.interval.msconfiguration. The Kafka node will generate a snapshot when either the maximum time interval is reached or the maximum bytes limit is reached.- Type: long
- Default: 20971520
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
metadata.log.max.snapshot.interval.msThis is the maximum number of milliseconds to wait to generate a snapshot if there are committed records in the log that are not included in the latest snapshot. A value of zero disables time based snapshot generation. The default value is 3600000. To generate snapshots based on the number of metadata bytes, see the
metadata.log.max.record.bytes.between.snapshotsconfiguration. The Kafka node will generate a snapshot when either the maximum time interval is reached or the maximum bytes limit is reached.- Type: long
- Default: 3600000 (1 hour)
- Valid Values: [0,…]
- Importance: high
- Dynamic update: read-only
metadata.log.segment.bytesThe maximum size of a single metadata log file.
- Type: int
- Default: 1073741824 (1 gibibyte)
- Valid Values: [12,…]
- Importance: high
- Dynamic update: read-only
metadata.log.segment.msThe maximum time before a new metadata log file is rolled out (in milliseconds).
- Type: long
- Default: 604800000 (7 days)
- Valid Values:
- Importance: high
- Dynamic update: read-only
metadata.max.retention.bytesThe maximum combined size of the metadata log and snapshots before deleting old snapshots and log files. Since at least one snapshot must exist before any logs can be deleted, this is a soft limit.
- Type: long
- Default: 104857600 (100 mebibytes)
- Valid Values:
- Importance: high
- Dynamic update: read-only
metadata.max.retention.msThe number of milliseconds to keep a metadata log file or snapshot before deleting it. Since at least one snapshot must exist before any logs can be deleted, this is a soft limit.
- Type: long
- Default: 604800000 (7 days)
- Valid Values:
- Importance: high
- Dynamic update: read-only
min.insync.replicasWhen a producer sets acks to "all" (or "-1"), this configuration specifies the minimum number of replicas that must acknowledge a write for the write to be considered successful. If this minimum cannot be met, then the producer will raise an exception (either
NotEnoughReplicasorNotEnoughReplicasAfterAppend). Regardless of theackssetting, the messages will not be visible to the consumers until they are replicated to all in-sync replicas and themin.insync.replicascondition is met. When used together,min.insync.replicasandacksallow you to enforce greater durability guarantees. A typical scenario would be to create a topic with a replication factor of 3, setmin.insync.replicasto 2, and produce withacksof "all". This will ensure that a majority of replicas must persist a write before it’s considered successful by the producer and it’s visible to consumers.- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: high
- Dynamic update: cluster-wide
num.io.threadsThe number of threads that the server uses for processing requests, which may include disk I/O.
- Type: int
- Default: 8
- Valid Values: [1,…]
- Importance: high
- Dynamic update: cluster-wide
num.network.threadsThe 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.
- Type: int
- Default: 3
- Valid Values: [1,…]
- Importance: high
- Dynamic update: cluster-wide
num.recovery.threads.per.data.dirThe number of threads per data directory to be used for log recovery at startup and flushing at shutdown.
- Type: int
- Default: 2
- Valid Values: [1,…]
- Importance: high
- Dynamic update: cluster-wide
num.replica.alter.log.dirs.threadsThe number of threads that can move replicas between log directories, which may include disk I/O. The default value is equal to the number of directories specified in the
log.dirorlog.dirsconfiguration property.- Type: int
- Valid Values:
- Importance: high
- Dynamic update: read-only
num.replica.fetchersNumber of fetcher threads used to replicate records from each source broker. The total number of fetchers on each broker is bound by
num.replica.fetchersmultiplied by the number of brokers in the cluster.Increasing this value can increase the degree of I/O parallelism in the follower and leader broker at the cost of higher CPU and memory utilization.- Type: int
- Default: 1
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
offset.metadata.max.bytesThe maximum size for a metadata entry associated with an offset commit.
- Type: int
- Default: 4096 (4 kibibytes)
- Valid Values:
- Importance: high
- Dynamic update: read-only
offsets.commit.timeout.msOffset commit will be delayed until all replicas for the offsets topic receive the commit or this timeout is reached. This is similar to the producer request timeout. This is applied to all the writes made by the coordinator.
- Type: int
- Default: 5000 (5 seconds)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
offsets.load.buffer.sizeBatch size for reading from the offsets segments when loading group metadata into the cache (soft-limit, overridden if records are too large).
- Type: int
- Default: 5242880
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
offsets.retention.check.interval.msFrequency at which to check for stale offsets.
- Type: long
- Default: 600000 (10 minutes)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
offsets.retention.minutesFor subscribed consumers, committed offset of a specific partition will be expired and discarded when 1) this retention period has elapsed after the consumer group loses all its consumers (i.e. becomes empty); 2) this retention period has elapsed since the last time an offset is committed for the partition and the group is no longer subscribed to the corresponding topic. For standalone consumers (using manual assignment), offsets will be expired after this retention period has elapsed since the time of last commit. Note that when a group is deleted via the delete-group request, its committed offsets will also be deleted without extra retention period; also when a topic is deleted via the delete-topic request, upon propagated metadata update any group’s committed offsets for that topic will also be deleted without extra retention period.
- Type: int
- Default: 10080
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
offsets.topic.compression.codecCompression codec for the offsets topic - compression may be used to achieve "atomic" commits.
- Type: int
- Default: 0
- Valid Values:
- Importance: high
- Dynamic update: read-only
offsets.topic.num.partitionsThe number of partitions for the offset commit topic (should not change after deployment).
- Type: int
- Default: 50
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
offsets.topic.replication.factorThe replication factor for the offsets topic (set higher to ensure availability). Internal topic creation will fail until the cluster size meets this replication factor requirement.
- Type: short
- Default: 3
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
offsets.topic.segment.bytesThe offsets topic segment bytes should be kept relatively small in order to facilitate faster log compaction and cache loads.
- Type: int
- Default: 104857600 (100 mebibytes)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
queued.max.requestsThe number of queued requests allowed for data-plane, before blocking the network threads.
- Type: int
- Default: 500
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
replica.fetch.min.bytesMinimum bytes expected for each fetch response. If not enough bytes, wait up to
replica.fetch.wait.max.ms(broker config).- Type: int
- Default: 1
- Valid Values:
- Importance: high
- Dynamic update: read-only
replica.fetch.wait.max.msThe maximum wait time for each fetcher request issued by follower replicas. This value should always be less than the replica.lag.time.max.ms at all times to prevent frequent shrinking of ISR for low throughput topics.
- Type: int
- Default: 500
- Valid Values:
- Importance: high
- Dynamic update: read-only
replica.high.watermark.checkpoint.interval.msThe frequency with which the high watermark is saved out to disk.
- Type: long
- Default: 5000 (5 seconds)
- Valid Values:
- Importance: high
- Dynamic update: read-only
replica.lag.time.max.msIf a follower hasn’t sent any fetch requests or hasn’t consumed up to the leader’s log end offset for at least this time, the leader will remove the follower from ISR.
- Type: long
- Default: 30000 (30 seconds)
- Valid Values:
- Importance: high
- Dynamic update: read-only
replica.socket.receive.buffer.bytesThe socket receive buffer for network requests to the leader for replicating data.
- Type: int
- Default: 65536 (64 kibibytes)
- Valid Values:
- Importance: high
- Dynamic update: read-only
replica.socket.timeout.msThe socket timeout for network requests. Its value should be at least replica.fetch.wait.max.ms.
- Type: int
- Default: 30000 (30 seconds)
- Valid Values:
- Importance: high
- Dynamic update: read-only
request.timeout.msThe configuration controls the maximum amount of time the client will wait for the response of a request. If the response is not received before the timeout elapses the client will resend the request if necessary or fail the request if retries are exhausted.
- Type: int
- Default: 30000 (30 seconds)
- Valid Values:
- Importance: high
- Dynamic update: read-only
sasl.mechanism.controller.protocolSASL mechanism used for communication with controllers. Default is GSSAPI.
- Type: string
- Default: GSSAPI
- Valid Values:
- Importance: high
- Dynamic update: read-only
share.coordinator.load.buffer.sizeBatch size for reading from the share-group state topic when loading state information into the cache (soft-limit, overridden if records are too large).
- Type: int
- Default: 5242880
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
share.coordinator.state.topic.compression.codecCompression codec for the share-group state topic.
- Type: int
- Default: 0
- Valid Values:
- Importance: high
- Dynamic update: read-only
share.coordinator.state.topic.min.isrOverridden min.insync.replicas for the share-group state topic.
- Type: short
- Default: 2
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
share.coordinator.state.topic.num.partitionsThe number of partitions for the share-group state topic (should not change after deployment).
- Type: int
- Default: 50
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
share.coordinator.state.topic.replication.factorReplication factor for the share-group state topic. Topic creation will fail until the cluster size meets this replication factor requirement.
- Type: short
- Default: 3
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
share.coordinator.state.topic.segment.bytesThe log segment size for the share-group state topic.
- Type: int
- Default: 104857600 (100 mebibytes)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
share.coordinator.write.timeout.msThe duration in milliseconds that the share coordinator will wait for all replicas of the share-group state topic to receive a write.
- Type: int
- Default: 5000 (5 seconds)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
socket.receive.buffer.bytesThe SO_RCVBUF buffer of the socket server sockets. If the value is -1, the OS default will be used.
- Type: int
- Default: 102400 (100 kibibytes)
- Valid Values:
- Importance: high
- Dynamic update: read-only
socket.request.max.bytesThe maximum number of bytes in a socket request.
- Type: int
- Default: 104857600 (100 mebibytes)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
socket.send.buffer.bytesThe SO_SNDBUF buffer of the socket server sockets. If the value is -1, the OS default will be used.
- Type: int
- Default: 102400 (100 kibibytes)
- Valid Values:
- Importance: high
- Dynamic update: read-only
transaction.max.timeout.msThe maximum allowed timeout for transactions. If a client’s requested transaction time exceed this, then the broker will return an error in InitProducerIdRequest. This prevents a client from too large of a timeout, which can stall consumers reading from topics included in the transaction.
- Type: int
- Default: 900000 (15 minutes)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
transaction.state.log.load.buffer.sizeBatch size for reading from the transaction log segments when loading producer ids and transactions into the cache (soft-limit, overridden if records are too large).
- Type: int
- Default: 5242880
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
transaction.state.log.min.isrThe minimum number of replicas that must acknowledge a write to transaction topic in order to be considered successful.
- Type: int
- Default: 2
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
transaction.state.log.num.partitionsThe number of partitions for the transaction topic (should not change after deployment).
- Type: int
- Default: 50
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
transaction.state.log.replication.factorThe replication factor for the transaction topic (set higher to ensure availability). Internal topic creation will fail until the cluster size meets this replication factor requirement.
- Type: short
- Default: 3
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
transaction.state.log.segment.bytesThe transaction topic segment bytes should be kept relatively small in order to facilitate faster log compaction and cache loads.
- Type: int
- Default: 104857600 (100 mebibytes)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
transactional.id.expiration.msThe time in ms that the transaction coordinator will wait without receiving any transaction status updates for the current transaction before expiring its transactional id. Transactional IDs will not expire while a the transaction is still ongoing.
- Type: int
- Default: 604800000 (7 days)
- Valid Values: [1,…]
- Importance: high
- Dynamic update: read-only
unclean.leader.election.enableIndicates whether to enable replicas not in the ISR set to be elected as leader as a last resort, even though doing so may result in data loss
Note: In KRaft mode, when enabling this config dynamically, it needs to wait for the unclean leader election thread to trigger election periodically (default is 5 minutes). Please run
kafka-leader-election.shwithuncleanoption to trigger the unclean leader election immediately if needed.- Type: boolean
- Default: false
- Valid Values:
- Importance: high
- Dynamic update: cluster-wide
broker.heartbeat.interval.msThe length of time in milliseconds between broker heartbeats.
- Type: int
- Default: 2000 (2 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
broker.rackRack of the broker. This will be used in rack aware replication assignment for fault tolerance. Examples:
RACK1,us-east-1d.- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
broker.session.timeout.msThe length of time in milliseconds that a broker lease lasts if no heartbeats are made.
- Type: int
- Default: 9000 (9 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
compression.gzip.levelThe compression level to use if compression.type is set to 'gzip'.
- Type: int
- Default: -1
- Valid Values: [1,…,9] or -1
- Importance: medium
- Dynamic update: cluster-wide
compression.lz4.levelThe compression level to use if compression.type is set to 'lz4'.
- Type: int
- Default: 9
- Valid Values: [1,…,17]
- Importance: medium
- Dynamic update: cluster-wide
compression.zstd.levelThe compression level to use if compression.type is set to 'zstd'.
- Type: int
- Default: 3
- Valid Values: [-131072,…,22]
- Importance: medium
- Dynamic update: cluster-wide
connections.max.idle.msIdle connections timeout: the server socket processor threads close the connections that idle more than this.
- Type: long
- Default: 600000 (10 minutes)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
connections.max.reauth.msWhen explicitly set to a positive number (the default is 0, not a positive number), a session lifetime that will not exceed the configured value will be communicated to v2.2.0 or later clients when they authenticate. The broker will disconnect any such connection that is not re-authenticated within the session lifetime and that is then subsequently used for any purpose other than re-authentication. Configuration names can optionally be prefixed with listener prefix and SASL mechanism name in lower-case. For example, listener.name.sasl_ssl.oauthbearer.connections.max.reauth.ms=3600000.
- Type: long
- Default: 0
- Valid Values:
- Importance: medium
- Dynamic update: read-only
controlled.shutdown.enableEnable controlled shutdown of the server.
- Type: boolean
- Default: true
- Valid Values:
- Importance: medium
- Dynamic update: read-only
controller.quorum.append.linger.msThe duration in milliseconds that the leader will wait for writes to accumulate before flushing them to disk.
- Type: int
- Default: 25
- Valid Values:
- Importance: medium
- Dynamic update: read-only
controller.quorum.request.timeout.msThe configuration controls the maximum amount of time the client will wait for the response of a request. If the response is not received before the timeout elapses the client will resend the request if necessary or fail the request if retries are exhausted.
- Type: int
- Default: 2000 (2 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
controller.socket.timeout.msThe socket timeout for controller-to-broker channels.
- Type: int
- Default: 30000 (30 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
default.replication.factorThe replication factor for automatically created topics, and for topics created with -1 as the replication factor.
- Type: int
- Default: 1
- Valid Values:
- Importance: medium
- Dynamic update: read-only
delegation.token.expiry.time.msThe token validity time in milliseconds before the token needs to be renewed. Default value 1 day.
- Type: long
- Default: 86400000 (1 day)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
delegation.token.max.lifetime.msThe token has a maximum lifetime beyond which it cannot be renewed anymore. Default value 7 days.
- Type: long
- Default: 604800000 (7 days)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
delegation.token.secret.keySecret key to generate and verify delegation tokens. The same key must be configured across all the brokers. If using Kafka with KRaft, the key must also be set across all controllers. If the key is not set or set to empty string, brokers will disable the delegation token support.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: read-only
delete.records.purgatory.purge.interval.requestsThe purge interval (in number of requests) of the delete records request purgatory.
- Type: int
- Default: 1
- Valid Values:
- Importance: medium
- Dynamic update: read-only
fetch.max.bytesThe maximum number of bytes we will return for a fetch request. Must be at least 1024.
- Type: int
- Default: 57671680 (55 mebibytes)
- Valid Values: [1024,…]
- Importance: medium
- Dynamic update: read-only
fetch.purgatory.purge.interval.requestsThe purge interval (in number of requests) of the fetch request purgatory.
- Type: int
- Default: 1000
- Valid Values:
- Importance: medium
- Dynamic update: read-only
group.consumer.assignorsThe server side assignors as a list of either names for builtin assignors or full class names for customer assignors. The first one in the list is considered as the default assignor to be used in the case where the consumer does not specify an assignor. The supported builtin assignors are: uniform, range.
- Type: list
- Default: uniform,range
- Valid Values:
- Importance: medium
- Dynamic update: read-only
group.consumer.heartbeat.interval.msThe heartbeat interval given to the members of a consumer group.
- Type: int
- Default: 5000 (5 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.consumer.max.heartbeat.interval.msThe maximum heartbeat interval for registered consumers.
- Type: int
- Default: 15000 (15 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.consumer.max.session.timeout.msThe maximum allowed session timeout for registered consumers.
- Type: int
- Default: 60000 (1 minute)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.consumer.max.sizeThe maximum number of consumers that a single consumer group can accommodate. This value will only impact groups under the CONSUMER group protocol. To configure the max group size when using the CLASSIC group protocol use group.max.size instead.
- Type: int
- Default: 2147483647
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.consumer.migration.policyThe config that enables converting the non-empty classic group using the consumer embedded protocol to the non-empty consumer group using the consumer group protocol and vice versa; conversions of empty groups in both directions are always enabled regardless of this policy. bidirectional: both upgrade from classic group to consumer group and downgrade from consumer group to classic group are enabled, upgrade: only upgrade from classic group to consumer group is enabled, downgrade: only downgrade from consumer group to classic group is enabled, disabled: neither upgrade nor downgrade is enabled.
- Type: string
- Default: bidirectional
- Valid Values: (case insensitive) [DISABLED, DOWNGRADE, UPGRADE, BIDIRECTIONAL]
- Importance: medium
- Dynamic update: read-only
group.consumer.min.heartbeat.interval.msThe minimum heartbeat interval for registered consumers.
- Type: int
- Default: 5000 (5 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.consumer.min.session.timeout.msThe minimum allowed session timeout for registered consumers.
- Type: int
- Default: 45000 (45 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.consumer.session.timeout.msThe timeout to detect client failures when using the consumer group protocol.
- Type: int
- Default: 45000 (45 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.coordinator.append.linger.msThe duration in milliseconds that the coordinator will wait for writes to accumulate before flushing them to disk. Transactional writes are not accumulated.
- Type: int
- Default: 5
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
group.coordinator.rebalance.protocolsThe list of enabled rebalance protocols.The share rebalance protocol is in early access and therefore must not be used in production.
- Type: list
- Default: classic,consumer
- Valid Values: [consumer, classic, share]
- Importance: medium
- Dynamic update: read-only
group.initial.rebalance.delay.msThe amount of time the group coordinator will wait for more consumers to join a new group before performing the first rebalance. A longer delay means potentially fewer rebalances, but increases the time until processing begins.
- Type: int
- Default: 3000 (3 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
group.max.session.timeout.msThe maximum allowed session timeout for registered consumers. Longer timeouts give consumers more time to process messages in between heartbeats at the cost of a longer time to detect failures.
- Type: int
- Default: 1800000 (30 minutes)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
group.max.sizeThe maximum number of consumers that a single consumer group can accommodate.
- Type: int
- Default: 2147483647
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.min.session.timeout.msThe minimum allowed session timeout for registered consumers. Shorter timeouts result in quicker failure detection at the cost of more frequent consumer heartbeating, which can overwhelm broker resources.
- Type: int
- Default: 6000 (6 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
group.share.delivery.count.limitThe maximum number of delivery attempts for a record delivered to a share group.
- Type: int
- Default: 5
- Valid Values: [2,…,10]
- Importance: medium
- Dynamic update: read-only
group.share.heartbeat.interval.msThe heartbeat interval given to the members of a share group.
- Type: int
- Default: 5000 (5 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.share.max.groupsThe maximum number of share groups.
- Type: short
- Default: 10
- Valid Values: [1,…,100]
- Importance: medium
- Dynamic update: read-only
group.share.max.heartbeat.interval.msThe maximum heartbeat interval for share group members.
- Type: int
- Default: 15000 (15 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.share.max.record.lock.duration.msThe record acquisition lock maximum duration in milliseconds for share groups.
- Type: int
- Default: 60000 (1 minute)
- Valid Values: [30000,…,3600000]
- Importance: medium
- Dynamic update: read-only
group.share.max.session.timeout.msThe maximum allowed session timeout for share group members.
- Type: int
- Default: 60000 (1 minute)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.share.max.sizeThe maximum number of members that a single share group can accommodate.
- Type: int
- Default: 200
- Valid Values: [1,…,1000]
- Importance: medium
- Dynamic update: read-only
group.share.min.heartbeat.interval.msThe minimum heartbeat interval for share group members.
- Type: int
- Default: 5000 (5 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.share.min.record.lock.duration.msThe record acquisition lock minimum duration in milliseconds for share groups.
- Type: int
- Default: 15000 (15 seconds)
- Valid Values: [1000,…,30000]
- Importance: medium
- Dynamic update: read-only
group.share.min.session.timeout.msThe minimum allowed session timeout for share group members.
- Type: int
- Default: 45000 (45 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
group.share.partition.max.record.locksShare-group record lock limit per share-partition.
- Type: int
- Default: 200
- Valid Values: [100,…,10000]
- Importance: medium
- Dynamic update: read-only
group.share.record.lock.duration.msThe record acquisition lock duration in milliseconds for share groups.
- Type: int
- Default: 30000 (30 seconds)
- Valid Values: [1000,…,3600000]
- Importance: medium
- Dynamic update: read-only
group.share.session.timeout.msThe timeout to detect client failures when using the share group protocol.
- Type: int
- Default: 45000 (45 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
initial.broker.registration.timeout.msWhen initially registering with the controller quorum, the number of milliseconds to wait before declaring failure and exiting the broker process.
- Type: int
- Default: 60000 (1 minute)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
inter.broker.listener.nameName of listener used for communication between brokers. If this is unset, the listener name is defined by security.inter.broker.protocol. It is an error to set this and security.inter.broker.protocol properties at the same time.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
log.cleaner.backoff.msThe amount of time to sleep when there are no logs to clean.
- Type: long
- Default: 15000 (15 seconds)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.dedupe.buffer.sizeThe total memory used for log deduplication across all cleaner threads.
- Type: long
- Default: 134217728
- Valid Values:
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.delete.retention.msThe amount of time to retain tombstone message markers for log compacted topics. This setting also gives a bound on the time in which a consumer must complete a read if they begin from offset 0 to ensure that they get a valid snapshot of the final stage (otherwise tombstones messages may be collected before a consumer completes their scan).
- Type: long
- Default: 86400000 (1 day)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.enableEnable the log cleaner process to run on the server. Should be enabled if using any topics with a cleanup.policy=compact including the internal offsets topic. If disabled those topics will not be compacted and continually grow in size.
- Type: boolean
- Default: true
- Valid Values:
- Importance: medium
- Dynamic update: read-only
log.cleaner.io.buffer.load.factorLog cleaner dedupe buffer load factor. The percentage full the dedupe buffer can become. A higher value will allow more log to be cleaned at once but will lead to more hash collisions.
- Type: double
- Default: 0.9
- Valid Values:
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.io.buffer.sizeThe total memory used for log cleaner I/O buffers across all cleaner threads.
- Type: int
- Default: 524288
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.io.max.bytes.per.secondThe log cleaner will be throttled so that the sum of its read and write i/o will be less than this value on average.
- Type: double
- Default: 1.7976931348623157E308
- Valid Values:
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.max.compaction.lag.msThe maximum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
- Type: long
- Default: 9223372036854775807
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.min.cleanable.ratioThe minimum ratio of dirty log to total log for a log to eligible for cleaning. If the log.cleaner.max.compaction.lag.ms or the log.cleaner.min.compaction.lag.ms configurations are also specified, then the log compactor considers the log eligible for compaction as soon as either: (i) the dirty ratio threshold has been met and the log has had dirty (uncompacted) records for at least the log.cleaner.min.compaction.lag.ms duration, or (ii) if the log has had dirty (uncompacted) records for at most the log.cleaner.max.compaction.lag.ms period.
- Type: double
- Default: 0.5
- Valid Values: [0,…,1]
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.min.compaction.lag.msThe minimum time a message will remain uncompacted in the log. Only applicable for logs that are being compacted.
- Type: long
- Default: 0
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.cleaner.threadsThe number of background threads to use for log cleaning.
- Type: int
- Default: 1
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.cleanup.policyThe default cleanup policy for segments beyond the retention window. A comma separated list of valid policies.
- Type: list
- Default: delete
- Valid Values: [compact, delete]
- Importance: medium
- Dynamic update: cluster-wide
log.index.interval.bytesThe interval with which we add an entry to the offset index.
- Type: int
- Default: 4096 (4 kibibytes)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.index.size.max.bytesThe maximum size in bytes of the offset index.
- Type: int
- Default: 10485760 (10 mebibytes)
- Valid Values: [4,…]
- Importance: medium
- Dynamic update: cluster-wide
log.local.retention.bytesThe maximum size of local log segments that can grow for a partition before it gets eligible for deletion. Default value is -2, it represents
log.retention.bytesvalue to be used. The effective value should always be less than or equal tolog.retention.bytesvalue.- Type: long
- Default: -2
- Valid Values: [-2,…]
- Importance: medium
- Dynamic update: cluster-wide
log.local.retention.msThe number of milliseconds to keep the local log segments before it gets eligible for deletion. Default value is -2, it represents
log.retention.msvalue is to be used. The effective value should always be less than or equal tolog.retention.msvalue.- Type: long
- Default: -2
- Valid Values: [-2,…]
- Importance: medium
- Dynamic update: cluster-wide
log.message.timestamp.after.max.msThis configuration sets the allowable timestamp difference between the message timestamp and the broker’s timestamp. The message timestamp can be later than or equal to the broker’s timestamp, with the maximum allowable difference determined by the value set in this configuration. If log.message.timestamp.type=CreateTime, the message will be rejected if the difference in timestamps exceeds this specified threshold. This configuration is ignored if log.message.timestamp.type=LogAppendTime.
- Type: long
- Default: 3600000 (1 hour)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.message.timestamp.before.max.msThis configuration sets the allowable timestamp difference between the broker’s timestamp and the message timestamp. The message timestamp can be earlier than or equal to the broker’s timestamp, with the maximum allowable difference determined by the value set in this configuration. If log.message.timestamp.type=CreateTime, the message will be rejected if the difference in timestamps exceeds this specified threshold. This configuration is ignored if log.message.timestamp.type=LogAppendTime.
- Type: long
- Default: 9223372036854775807
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
log.message.timestamp.typeDefine whether the timestamp in the message is message create time or log append time. The value should be either
CreateTimeorLogAppendTime.- Type: string
- Default: CreateTime
- Valid Values: [CreateTime, LogAppendTime]
- Importance: medium
- Dynamic update: cluster-wide
log.preallocateShould pre allocate file when create new segment? If you are using Kafka on Windows, you probably need to set it to true.
- Type: boolean
- Default: false
- Valid Values:
- Importance: medium
- Dynamic update: cluster-wide
log.retention.check.interval.msThe frequency in milliseconds that the log cleaner checks whether any log is eligible for deletion.
- Type: long
- Default: 300000 (5 minutes)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
max.connection.creation.rateThe maximum connection creation rate we allow in the broker at any time. Listener-level limits may also be configured by prefixing the config name with the listener prefix, for example,
listener.name.internal.max.connection.creation.rate.Broker-wide connection rate limit should be configured based on broker capacity while listener limits should be configured based on application requirements. New connections will be throttled if either the listener or the broker limit is reached, with the exception of inter-broker listener. Connections on the inter-broker listener will be throttled only when the listener-level rate limit is reached.- Type: int
- Default: 2147483647
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
max.connectionsThe maximum number of connections we allow in the broker at any time. This limit is applied in addition to any per-ip limits configured using max.connections.per.ip. Listener-level limits may also be configured by prefixing the config name with the listener prefix, for example,
listener.name.internal.max.connections.per.ip. Broker-wide limit should be configured based on broker capacity while listener limits should be configured based on application requirements. New connections are blocked if either the listener or broker limit is reached. Connections on the inter-broker listener are permitted even if broker-wide limit is reached. The least recently used connection on another listener will be closed in this case.- Type: int
- Default: 2147483647
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
max.connections.per.ipThe maximum number of connections we allow from each ip address. This can be set to 0 if there are overrides configured using max.connections.per.ip.overrides property. New connections from the ip address are dropped if the limit is reached.
- Type: int
- Default: 2147483647
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: cluster-wide
max.connections.per.ip.overridesA comma-separated list of per-ip or hostname overrides to the default maximum number of connections. An example value is "hostName:100,127.0.0.1:200".
- Type: string
- Default: ""
- Valid Values:
- Importance: medium
- Dynamic update: cluster-wide
max.incremental.fetch.session.cache.slotsThe maximum number of total incremental fetch sessions that we will maintain. FetchSessionCache is sharded into 8 shards and the limit is equally divided among all shards. Sessions are allocated to each shard in round-robin. Only entries within a shard are considered eligible for eviction.
- Type: int
- Default: 1000
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
max.request.partition.size.limitThe maximum number of partitions can be served in one request.
- Type: int
- Default: 2000
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
num.partitionsThe default number of log partitions per topic.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
principal.builder.classThe fully qualified name of a class that implements the KafkaPrincipalBuilder interface, which is used to build the KafkaPrincipal object used during authorization. If no principal builder is defined, the default behavior depends on the security protocol in use. For SSL authentication, the principal will be derived using the rules defined by
ssl.principal.mapping.rulesapplied on the distinguished name from the client certificate if one is provided; otherwise, if client authentication is not required, the principal name will be ANONYMOUS. For SASL authentication, the principal will be derived using the rules defined bysasl.kerberos.principal.to.local.rulesif GSSAPI is in use, and the SASL authentication ID for other mechanisms. For PLAINTEXT, the principal will be ANONYMOUS. Note that custom implementations ofKafkaPrincipalBuilderis required to implementKafkaPrincipalSerdeinterface, otherwise brokers will not be able to forward requests to the controller.- Type: class
- Default: org.apache.kafka.common.security.authenticator.DefaultKafkaPrincipalBuilder
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
producer.purgatory.purge.interval.requestsThe purge interval (in number of requests) of the producer request purgatory.
- Type: int
- Default: 1000
- Valid Values:
- Importance: medium
- Dynamic update: read-only
queued.max.request.bytesThe number of queued bytes allowed before no more requests are read.
- Type: long
- Default: -1
- Valid Values:
- Importance: medium
- Dynamic update: read-only
remote.fetch.max.wait.msThe maximum amount of time the server will wait before answering the remote fetch request.
- Type: int
- Default: 500
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.list.offsets.request.timeout.msThe maximum amount of time the server will wait for the remote list offsets request to complete.
- Type: long
- Default: 30000 (30 seconds)
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.log.manager.copier.thread.pool.sizeSize of the thread pool used in scheduling tasks to copy segments.
- Type: int
- Default: 10
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.log.manager.copy.max.bytes.per.secondThe maximum number of bytes that can be copied from local storage to remote storage per second. This is a global limit for all the partitions that are being copied from local storage to remote storage. The default value is Long.MAX_VALUE, which means there is no limit on the number of bytes that can be copied per second.
- Type: long
- Default: 9223372036854775807
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.log.manager.copy.quota.window.numThe number of samples to retain in memory for remote copy quota management. The default value is 11, which means there are 10 whole windows + 1 current window.
- Type: int
- Default: 11
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
remote.log.manager.copy.quota.window.size.secondsThe time span of each sample for remote copy quota management. The default value is 1 second.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
remote.log.manager.expiration.thread.pool.sizeSize of the thread pool used in scheduling tasks to clean up the expired remote log segments.
- Type: int
- Default: 10
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.log.manager.fetch.max.bytes.per.secondThe maximum number of bytes that can be fetched from remote storage to local storage per second. This is a global limit for all the partitions that are being fetched from remote storage to local storage. The default value is Long.MAX_VALUE, which means there is no limit on the number of bytes that can be fetched per second.
- Type: long
- Default: 9223372036854775807
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.log.manager.fetch.quota.window.numThe number of samples to retain in memory for remote fetch quota management. The default value is 11, which means there are 10 whole windows + 1 current window.
- Type: int
- Default: 11
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
remote.log.manager.fetch.quota.window.size.secondsThe time span of each sample for remote fetch quota management. The default value is 1 second.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
remote.log.manager.thread.pool.sizeSize of the thread pool used in scheduling follower tasks to read the highest-uploaded remote-offset for follower partitions.
- Type: int
- Default: 2
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
remote.log.metadata.manager.class.nameFully qualified class name of
RemoteLogMetadataManagerimplementation.- Type: string
- Default: org.apache.kafka.server.log.remote.metadata.storage.TopicBasedRemoteLogMetadataManager
- Valid Values: non-empty string
- Importance: medium
- Dynamic update: read-only
remote.log.metadata.manager.class.pathClass path of the
RemoteLogMetadataManagerimplementation. If specified, the RemoteLogMetadataManager implementation and its dependent libraries will be loaded by a dedicated classloader which searches this class path before the Kafka broker class path. The syntax of this parameter is same as the standard Java class path string.- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
remote.log.metadata.manager.impl.prefixPrefix used for properties to be passed to RemoteLogMetadataManager implementation. For example this value can be
rlmm.config..- Type: string
- Default: rlmm.config.
- Valid Values: non-empty string
- Importance: medium
- Dynamic update: read-only
remote.log.metadata.manager.listener.nameListener name of the local broker to which it should get connected if needed by RemoteLogMetadataManager implementation.
- Type: string
- Valid Values: non-empty string
- Importance: medium
- Dynamic update: read-only
remote.log.reader.max.pending.tasksMaximum remote log reader thread pool task queue size. If the task queue is full, fetch requests are served with an error.
- Type: int
- Default: 100
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
remote.log.reader.threadsSize of the thread pool that is allocated for handling remote log reads.
- Type: int
- Default: 10
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: cluster-wide
remote.log.storage.manager.class.nameFully qualified class name of
RemoteStorageManagerimplementation.- Type: string
- Valid Values: non-empty string
- Importance: medium
- Dynamic update: read-only
remote.log.storage.manager.class.pathClass path of the
RemoteStorageManagerimplementation. If specified, the RemoteStorageManager implementation and its dependent libraries will be loaded by a dedicated classloader which searches this class path before the Kafka broker class path. The syntax of this parameter is same as the standard Java class path string.- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
remote.log.storage.manager.impl.prefixPrefix used for properties to be passed to RemoteStorageManager implementation. For example this value can be
rsm.config..- Type: string
- Default: rsm.config.
- Valid Values: non-empty string
- Importance: medium
- Dynamic update: read-only
remote.log.storage.system.enableWhether to enable tiered storage functionality in a broker or not. When it is true broker starts all the services required for the tiered storage functionality.
- Type: boolean
- Default: false
- Valid Values:
- Importance: medium
- Dynamic update: read-only
replica.fetch.backoff.msThe amount of time to sleep when fetch partition error occurs.
- Type: int
- Default: 1000 (1 second)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
replica.fetch.max.bytesThe 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
message.max.bytes(broker config) ormax.message.bytes(topic config).- Type: int
- Default: 1048576 (1 mebibyte)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
replica.fetch.response.max.bytesMaximum bytes expected for the entire fetch response. Records are fetched in batches, and 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. As such, this is not an absolute maximum. The maximum record batch size accepted by the broker is defined via
message.max.bytes(broker config) ormax.message.bytes(topic config).- Type: int
- Default: 10485760 (10 mebibytes)
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
replica.selector.classThe fully qualified class name that implements ReplicaSelector. This is used by the broker to find the preferred read replica. By default, we use an implementation that returns the leader.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.client.callback.handler.classThe fully qualified name of a SASL client callback handler class that implements the AuthenticateCallbackHandler interface.
- Type: class
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.enabled.mechanismsThe list of SASL mechanisms enabled in the Kafka server. The list may contain any mechanism for which a security provider is available. Only GSSAPI is enabled by default.
- Type: list
- Default: GSSAPI
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.jaas.configJAAS login context parameters for SASL connections in the format used by JAAS configuration files. JAAS configuration file format is described here. The format for the value is:
loginModuleClass controlFlag (optionName=optionValue)*;. For brokers, the config must be prefixed with listener prefix and SASL mechanism name in lower-case. For example, listener.name.sasl_ssl.scram-sha-256.sasl.jaas.config=com.example.ScramLoginModule required;.- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.kerberos.kinit.cmdKerberos kinit command path.
- Type: string
- Default: /usr/bin/kinit
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.kerberos.min.time.before.reloginLogin thread sleep time between refresh attempts.
- Type: long
- Default: 60000
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.kerberos.principal.to.local.rulesA list of rules for mapping from principal names to short names (typically operating system usernames). The rules are evaluated in order and the first rule that matches a principal name is used to map it to a short name. Any later rules in the list are ignored. By default, principal names of the form
{username}/{hostname}@{REALM}are mapped to{username}. For more details on the format please see security authorization and acls. Note that this configuration is ignored if an extension ofKafkaPrincipalBuilderis provided by theprincipal.builder.classconfiguration.- Type: list
- Default: DEFAULT
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.kerberos.service.nameThe Kerberos principal name that Kafka runs as. This can be defined either in Kafka’s JAAS config or in Kafka’s config.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.kerberos.ticket.renew.jitterPercentage of random jitter added to the renewal time.
- Type: double
- Default: 0.05
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.kerberos.ticket.renew.window.factorLogin thread will sleep until the specified window factor of time from last refresh to ticket’s expiry has been reached, at which time it will try to renew the ticket.
- Type: double
- Default: 0.8
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.login.callback.handler.classThe fully qualified name of a SASL login callback handler class that implements the AuthenticateCallbackHandler interface. For brokers, login callback handler config must be prefixed with listener prefix and SASL mechanism name in lower-case. For example, listener.name.sasl_ssl.scram-sha-256.sasl.login.callback.handler.class=com.example.CustomScramLoginCallbackHandler.
- Type: class
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.login.classThe fully qualified name of a class that implements the Login interface. For brokers, login config must be prefixed with listener prefix and SASL mechanism name in lower-case. For example, listener.name.sasl_ssl.scram-sha-256.sasl.login.class=com.example.CustomScramLogin.
- Type: class
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.login.refresh.buffer.secondsThe amount of buffer time before credential expiration to maintain when refreshing a credential, in seconds. If a refresh would otherwise occur closer to expiration than the number of buffer seconds then the refresh will be moved up to maintain as much of the buffer time as possible. Legal values are between 0 and 3600 (1 hour); a default value of 300 (5 minutes) is used if no value is specified. This value and sasl.login.refresh.min.period.seconds are both ignored if their sum exceeds the remaining lifetime of a credential. Currently applies only to OAUTHBEARER.
- Type: short
- Default: 300
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.login.refresh.min.period.secondsThe desired minimum time for the login refresh thread to wait before refreshing a credential, in seconds. Legal values are between 0 and 900 (15 minutes); a default value of 60 (1 minute) is used if no value is specified. This value and sasl.login.refresh.buffer.seconds are both ignored if their sum exceeds the remaining lifetime of a credential. Currently applies only to OAUTHBEARER.
- Type: short
- Default: 60
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.login.refresh.window.factorLogin refresh thread will sleep until the specified window factor relative to the credential’s lifetime has been reached, at which time it will try to refresh the credential. Legal values are between 0.5 (50%) and 1.0 (100%) inclusive; a default value of 0.8 (80%) is used if no value is specified. Currently applies only to OAUTHBEARER.
- Type: double
- Default: 0.8
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.login.refresh.window.jitterThe maximum amount of random jitter relative to the credential’s lifetime that is added to the login refresh thread’s sleep time. Legal values are between 0 and 0.25 (25%) inclusive; a default value of 0.05 (5%) is used if no value is specified. Currently applies only to OAUTHBEARER.
- Type: double
- Default: 0.05
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.mechanism.inter.broker.protocolSASL mechanism used for inter-broker communication. Default is GSSAPI.
- Type: string
- Default: GSSAPI
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
sasl.oauthbearer.jwks.endpoint.urlThe OAuth/OIDC provider URL from which the provider’s JWKS (JSON Web Key Set) can be retrieved. The URL can be HTTP(S)-based or file-based. If the URL is HTTP(S)-based, the JWKS data will be retrieved from the OAuth/OIDC provider via the configured URL on broker startup. All then-current keys will be cached on the broker for incoming requests. If an authentication request is received for a JWT that includes a "kid" header claim value that isn’t yet in the cache, the JWKS endpoint will be queried again on demand. However, the broker polls the URL every sasl.oauthbearer.jwks.endpoint.refresh.ms milliseconds to refresh the cache with any forthcoming keys before any JWT requests that include them are received. If the URL is file-based, the broker will load the JWKS file from a configured location on startup. In the event that the JWT includes a "kid" header value that isn’t in the JWKS file, the broker will reject the JWT and authentication will fail.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.oauthbearer.token.endpoint.urlThe URL for the OAuth/OIDC identity provider. If the URL is HTTP(S)-based, it is the issuer’s token endpoint URL to which requests will be made to login based on the configuration in sasl.jaas.config. If the URL is file-based, it specifies a file containing an access token (in JWT serialized form) issued by the OAuth/OIDC identity provider to use for authorization.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.server.callback.handler.classThe fully qualified name of a SASL server callback handler class that implements the AuthenticateCallbackHandler interface. Server callback handlers must be prefixed with listener prefix and SASL mechanism name in lower-case. For example, listener.name.sasl_ssl.plain.sasl.server.callback.handler.class=com.example.CustomPlainCallbackHandler.
- Type: class
- Valid Values:
- Importance: medium
- Dynamic update: read-only
sasl.server.max.receive.sizeThe maximum receive size allowed before and during initial SASL authentication. Default receive size is 512KB. GSSAPI limits requests to 64K, but we allow upto 512KB by default for custom SASL mechanisms. In practice, PLAIN, SCRAM and OAUTH mechanisms can use much smaller limits.
- Type: int
- Default: 524288
- Valid Values:
- Importance: medium
- Dynamic update: read-only
security.inter.broker.protocolSecurity protocol used to communicate between brokers. It is an error to set this and inter.broker.listener.name properties at the same time.
- Type: string
- Default: PLAINTEXT
- Valid Values: [PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL]
- Importance: medium
- Dynamic update: read-only
share.coordinator.append.linger.msThe duration in milliseconds that the share coordinator will wait for writes to accumulate before flushing them to disk.
- Type: int
- Default: 10
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
share.coordinator.snapshot.update.records.per.snapshotThe number of update records the share coordinator writes between snapshot records.
- Type: int
- Default: 500
- Valid Values: [0,…]
- Importance: medium
- Dynamic update: read-only
share.coordinator.threadsThe number of threads used by the share coordinator.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
share.fetch.purgatory.purge.interval.requestsThe purge interval (in number of requests) of the share fetch request purgatory.
- Type: int
- Default: 1000
- Valid Values:
- Importance: medium
- Dynamic update: read-only
socket.connection.setup.timeout.max.msThe maximum amount of time the client will wait for the socket connection to be established. The connection setup timeout will increase exponentially for each consecutive connection failure up to this maximum. To avoid connection storms, a randomization factor of 0.2 will be applied to the timeout resulting in a random range between 20% below and 20% above the computed value.
- Type: long
- Default: 30000 (30 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
socket.connection.setup.timeout.msThe amount of time the client will wait for the socket connection to be established. If the connection is not built before the timeout elapses, clients will close the socket channel. This value is the initial backoff value and will increase exponentially for each consecutive connection failure, up to the
socket.connection.setup.timeout.max.msvalue.- Type: long
- Default: 10000 (10 seconds)
- Valid Values:
- Importance: medium
- Dynamic update: read-only
socket.listen.backlog.sizeThe maximum number of pending connections on the socket. In Linux, you may also need to configure
somaxconnandtcp_max_syn_backlogkernel parameters accordingly to make the configuration takes effect.- Type: int
- Default: 50
- Valid Values: [1,…]
- Importance: medium
- Dynamic update: read-only
ssl.cipher.suitesA list of cipher suites. This is a named combination of authentication, encryption, MAC and key exchange algorithm used to negotiate the security settings for a network connection using TLS or SSL network protocol. By default all the available cipher suites are supported.
- Type: list
- Default: ""
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.client.authConfigures kafka broker to request client authentication. The following settings are common:
-
ssl.client.auth=requiredIf set to required client authentication is required. -
ssl.client.auth=requestedThis means client authentication is optional. unlike required, if this option is set client can choose not to provide authentication information about itself -
ssl.client.auth=noneThis means client authentication is not needed. - Type: string
- Default: none
- Valid Values: [required, requested, none]
- Importance: medium
- Dynamic update: per-broker
-
ssl.enabled.protocolsThe list of protocols enabled for SSL connections. The default is 'TLSv1.2,TLSv1.3'. This means that clients and servers will prefer TLSv1.3 if both support it and fallback to TLSv1.2 otherwise (assuming both support at least TLSv1.2). This default should be fine for most use cases. Also see the config documentation for
ssl.protocolto understand how it can impact the TLS version negotiation behavior.- Type: list
- Default: TLSv1.2,TLSv1.3
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.key.passwordThe password of the private key in the key store file or the PEM key specified in 'ssl.keystore.key'.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.keymanager.algorithmThe algorithm used by key manager factory for SSL connections. Default value is the key manager factory algorithm configured for the Java Virtual Machine.
- Type: string
- Default: SunX509
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.keystore.certificate.chainCertificate chain in the format specified by 'ssl.keystore.type'. Default SSL engine factory supports only PEM format with a list of X.509 certificates.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.keystore.keyPrivate key in the format specified by 'ssl.keystore.type'. Default SSL engine factory supports only PEM format with PKCS#8 keys. If the key is encrypted, key password must be specified using 'ssl.key.password'.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.keystore.locationThe location of the key store file. This is optional for client and can be used for two-way authentication for client.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.keystore.passwordThe store password for the key store file. This is optional for client and only needed if 'ssl.keystore.location' is configured. Key store password is not supported for PEM format.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.keystore.typeThe file format of the key store file. This is optional for client. The values currently supported by the default
ssl.engine.factory.classare [JKS, PKCS12, PEM].- Type: string
- Default: JKS
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.protocolThe SSL protocol used to generate the SSLContext. The default is 'TLSv1.3', which should be fine for most use cases. A typical alternative to the default is 'TLSv1.2'. Allowed values for this config are dependent on the JVM. Clients using the defaults for this config and 'ssl.enabled.protocols' will downgrade to 'TLSv1.2' if the server does not support 'TLSv1.3'. If this config is set to 'TLSv1.2', however, clients will not use 'TLSv1.3' even if it is one of the values in
ssl.enabled.protocolsand the server only supports 'TLSv1.3'.- Type: string
- Default: TLSv1.3
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.providerThe name of the security provider used for SSL connections. Default value is the default security provider of the JVM.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.trustmanager.algorithmThe algorithm used by trust manager factory for SSL connections. Default value is the trust manager factory algorithm configured for the Java Virtual Machine.
- Type: string
- Default: PKIX
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.truststore.certificatesTrusted certificates in the format specified by 'ssl.truststore.type'. Default SSL engine factory supports only PEM format with X.509 certificates.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.truststore.locationThe location of the trust store file.
- Type: string
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.truststore.passwordThe password for the trust store file. If a password is not set, trust store file configured will still be used, but integrity checking is disabled. Trust store password is not supported for PEM format.
- Type: password
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
ssl.truststore.typeThe file format of the trust store file. The values currently supported by the default
ssl.engine.factory.classare [JKS, PKCS12, PEM].- Type: string
- Default: JKS
- Valid Values:
- Importance: medium
- Dynamic update: per-broker
alter.config.policy.class.nameThe alter configs policy class that should be used for validation. The class should implement the
org.apache.kafka.server.policy.AlterConfigPolicyinterface.Note: This policy runs on the controller instead of the broker.
- Type: class
- Valid Values:
- Importance: low
- Dynamic update: read-only
alter.log.dirs.replication.quota.window.numThe number of samples to retain in memory for alter log dirs replication quotas.
- Type: int
- Default: 11
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
alter.log.dirs.replication.quota.window.size.secondsThe time span of each sample for alter log dirs replication quotas.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
authorizer.class.nameThe fully qualified name of a class that implements
org.apache.kafka.server.authorizer.Authorizerinterface, which is used by the broker for authorization.- Type: string
- Default: ""
- Valid Values: non-null string
- Importance: low
- Dynamic update: read-only
client.quota.callback.classThe fully qualified name of a class that implements the ClientQuotaCallback interface, which is used to determine quota limits applied to client requests. For any given request, the most specific quota that matches the user principal of the session and the client-id of the request is applied.
- Type: class
- Valid Values:
- Importance: low
- Dynamic update: read-only
connection.failed.authentication.delay.msConnection close delay on failed authentication: this is the time (in milliseconds) by which connection close will be delayed on authentication failure. This must be configured to be less than connections.max.idle.ms to prevent connection timeout.
- Type: int
- Default: 100
- Valid Values: [0,…]
- Importance: low
- Dynamic update: read-only
controller.quorum.retry.backoff.msThe amount of time to wait before attempting to retry a failed request to a given topic partition. This avoids repeatedly sending requests in a tight loop under some failure scenarios. This value is the initial backoff value and will increase exponentially for each failed request, up to the
retry.backoff.max.msvalue.- Type: int
- Default: 20
- Valid Values:
- Importance: low
- Dynamic update: read-only
controller.quota.window.numThe number of samples to retain in memory for controller mutation quotas.
- Type: int
- Default: 11
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
controller.quota.window.size.secondsThe time span of each sample for controller mutations quotas.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
create.topic.policy.class.nameThe create topic policy class that should be used for validation. The class should implement the
org.apache.kafka.server.policy.CreateTopicPolicyinterface.Note: This policy runs on the controller instead of the broker.
- Type: class
- Valid Values:
- Importance: low
- Dynamic update: read-only
delegation.token.expiry.check.interval.msScan interval to remove expired delegation tokens.
- Type: long
- Default: 3600000 (1 hour)
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
kafka.metrics.polling.interval.secsThe metrics polling interval (in seconds) which can be used in kafka.metrics.reporters implementations.
- Type: int
- Default: 10
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
kafka.metrics.reportersA list of classes to use as Yammer metrics custom reporters. The reporters should implement
kafka.metrics.KafkaMetricsReportertrait. If a client wants to expose JMX operations on a custom reporter, the custom reporter needs to additionally implement an MBean trait that extendskafka.metrics.KafkaMetricsReporterMBeantrait so that the registered MBean is compliant with the standard MBean convention.- Type: list
- Default: ""
- Valid Values:
- Importance: low
- Dynamic update: read-only
listener.security.protocol.mapMap between listener names and security protocols. This must be defined for the same security protocol to be usable in more than one port or IP. For example, internal and external traffic can be separated even if SSL is required for both. Concretely, the user could define listeners with names INTERNAL and EXTERNAL and this property as:
INTERNAL:SSL,EXTERNAL:SSL. As shown, key and value are separated by a colon and map entries are separated by commas. Each listener name should only appear once in the map. Different security (SSL and SASL) settings can be configured for each listener by adding a normalised prefix (the listener name is lowercased) to the config name. For example, to set a different keystore for the INTERNAL listener, a config with namelistener.name.internal.ssl.keystore.locationwould be set. If the config for the listener name is not set, the config will fallback to the generic config (i.e.ssl.keystore.location). Note that in KRaft a default mapping from the listener names defined bycontroller.listener.namesto PLAINTEXT is assumed if no explicit mapping is provided and no other security protocol is in use.- Type: string
- Default: SASL_SSL:SASL_SSL,PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT
- Valid Values:
- Importance: low
- Dynamic update: per-broker
log.dir.failure.timeout.msIf the broker is unable to successfully communicate to the controller that some log directory has failed for longer than this time, the broker will fail and shut down.
- Type: long
- Default: 30000 (30 seconds)
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
metadata.max.idle.interval.msThis configuration controls how often the active controller should write no-op records to the metadata partition. If the value is 0, no-op records are not appended to the metadata partition. The default value is 500.
- Type: int
- Default: 500
- Valid Values: [0,…]
- Importance: low
- Dynamic update: read-only
metric.reportersA list of classes to use as metrics reporters. Implementing the
org.apache.kafka.common.metrics.MetricsReporterinterface allows plugging in classes that will be notified of new metric creation.- Type: list
- Default: org.apache.kafka.common.metrics.JmxReporter
- Valid Values:
- Importance: low
- Dynamic update: cluster-wide
metrics.num.samplesThe number of samples maintained to compute metrics.
- Type: int
- Default: 2
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only
metrics.recording.level- The highest recording level for metrics. It has three levels for recording metrics - info, debug, and trace.
INFO level records only essential metrics necessary for monitoring system performance and health. It collects vital data without gathering too much detail, making it suitable for production environments where minimal overhead is desired.
DEBUG level records most metrics, providing more detailed information about the system’s operation. It’s useful for development and testing environments where you need deeper insights to debug and fine-tune the application.
TRACE level records all possible metrics, capturing every detail about the system’s performance and operation. It’s best for controlled environments where in-depth analysis is required, though it can introduce significant overhead.
- Type: string
- Default: INFO
- Valid Values:
- Importance: low
Dynamic update: read-only
metrics.sample.window.ms- The window of time a metrics sample is computed over.
- Type: long
- Default: 30000 (30 seconds)
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
producer.id.expiration.ms-
The time in ms that a topic partition leader will wait before expiring producer IDs. Producer IDs will not expire while a transaction associated to them is still ongoing. Note that producer IDs may expire sooner if the last write from the producer ID is deleted due to the topic’s retention settings. Setting this value the same or higher than
delivery.timeout.mscan help prevent expiration during retries and protect against message duplication, but the default should be reasonable for most use cases.
- Type: int
- Default: 86400000 (1 day)
- Valid Values: [1,…]
- Importance: low
Dynamic update: cluster-wide
quota.window.num- The number of samples to retain in memory for client quotas.
- Type: int
- Default: 11
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
quota.window.size.seconds- The time span of each sample for client quotas.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
remote.log.index.file.cache.total.size.bytes- The total size of the space allocated to store index files fetched from remote storage in the local storage.
- Type: long
- Default: 1073741824 (1 gibibyte)
- Valid Values: [1,…]
- Importance: low
Dynamic update: cluster-wide
remote.log.manager.task.interval.ms- Interval at which remote log manager runs the scheduled tasks like copy segments, and clean up remote log segments.
- Type: long
- Default: 30000 (30 seconds)
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
remote.log.metadata.custom.metadata.max.bytes- The maximum size of custom metadata in bytes that the broker should accept from a remote storage plugin. If custom metadata exceeds this limit, the updated segment metadata will not be stored, the copied data will be attempted to delete, and the remote copying task for this topic-partition will stop with an error.
- Type: int
- Default: 128
- Valid Values: [0,…]
- Importance: low
Dynamic update: read-only
replication.quota.window.num- The number of samples to retain in memory for replication quotas.
- Type: int
- Default: 11
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
replication.quota.window.size.seconds- The time span of each sample for replication quotas.
- Type: int
- Default: 1
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
sasl.login.connect.timeout.ms- The (optional) value in milliseconds for the external authentication provider connection timeout. Currently applies only to OAUTHBEARER.
- Type: int
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.login.read.timeout.ms- The (optional) value in milliseconds for the external authentication provider read timeout. Currently applies only to OAUTHBEARER.
- Type: int
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.login.retry.backoff.max.ms- The (optional) value in milliseconds for the maximum wait between login attempts to the external authentication provider. Login uses an exponential backoff algorithm with an initial wait based on the sasl.login.retry.backoff.ms setting and will double in wait length between attempts up to a maximum wait length specified by the sasl.login.retry.backoff.max.ms setting. Currently applies only to OAUTHBEARER.
- Type: long
- Default: 10000 (10 seconds)
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.login.retry.backoff.ms- The (optional) value in milliseconds for the initial wait between login attempts to the external authentication provider. Login uses an exponential backoff algorithm with an initial wait based on the sasl.login.retry.backoff.ms setting and will double in wait length between attempts up to a maximum wait length specified by the sasl.login.retry.backoff.max.ms setting. Currently applies only to OAUTHBEARER.
- Type: long
- Default: 100
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.clock.skew.seconds- The (optional) value in seconds to allow for differences between the time of the OAuth/OIDC identity provider and the broker.
- Type: int
- Default: 30
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.expected.audience- The (optional) comma-delimited setting for the broker to use to verify that the JWT was issued for one of the expected audiences. The JWT will be inspected for the standard OAuth "aud" claim and if this value is set, the broker will match the value from JWT’s "aud" claim to see if there is an exact match. If there is no match, the broker will reject the JWT and authentication will fail.
- Type: list
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.expected.issuer- The (optional) setting for the broker to use to verify that the JWT was created by the expected issuer. The JWT will be inspected for the standard OAuth "iss" claim and if this value is set, the broker will match it exactly against what is in the JWT’s "iss" claim. If there is no match, the broker will reject the JWT and authentication will fail.
- Type: string
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.jwks.endpoint.refresh.ms- The (optional) value in milliseconds for the broker to wait between refreshing its JWKS (JSON Web Key Set) cache that contains the keys to verify the signature of the JWT.
- Type: long
- Default: 3600000 (1 hour)
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.jwks.endpoint.retry.backoff.max.ms- The (optional) value in milliseconds for the maximum wait between attempts to retrieve the JWKS (JSON Web Key Set) from the external authentication provider. JWKS retrieval uses an exponential backoff algorithm with an initial wait based on the sasl.oauthbearer.jwks.endpoint.retry.backoff.ms setting and will double in wait length between attempts up to a maximum wait length specified by the sasl.oauthbearer.jwks.endpoint.retry.backoff.max.ms setting.
- Type: long
- Default: 10000 (10 seconds)
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.jwks.endpoint.retry.backoff.ms- The (optional) value in milliseconds for the initial wait between JWKS (JSON Web Key Set) retrieval attempts from the external authentication provider. JWKS retrieval uses an exponential backoff algorithm with an initial wait based on the sasl.oauthbearer.jwks.endpoint.retry.backoff.ms setting and will double in wait length between attempts up to a maximum wait length specified by the sasl.oauthbearer.jwks.endpoint.retry.backoff.max.ms setting.
- Type: long
- Default: 100
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.scope.claim.name- The OAuth claim for the scope is often named "scope", but this (optional) setting can provide a different name to use for the scope included in the JWT payload’s claims if the OAuth/OIDC provider uses a different name for that claim.
- Type: string
- Default: scope
- Valid Values:
- Importance: low
Dynamic update: read-only
sasl.oauthbearer.sub.claim.name- The OAuth claim for the subject is often named "sub", but this (optional) setting can provide a different name to use for the subject included in the JWT payload’s claims if the OAuth/OIDC provider uses a different name for that claim.
- Type: string
- Default: sub
- Valid Values:
- Importance: low
Dynamic update: read-only
security.providers-
A list of configurable creator classes each returning a provider implementing security algorithms. These classes should implement the
org.apache.kafka.common.security.auth.SecurityProviderCreatorinterface.
- Type: string
- Valid Values:
- Importance: low
Dynamic update: read-only
ssl.allow.dn.changes- Indicates whether changes to the certificate distinguished name should be allowed during a dynamic reconfiguration of certificates or not.
- Type: boolean
- Default: false
- Valid Values:
- Importance: low
Dynamic update: read-only
ssl.allow.san.changes- Indicates whether changes to the certificate subject alternative names should be allowed during a dynamic reconfiguration of certificates or not.
- Type: boolean
- Default: false
- Valid Values:
- Importance: low
Dynamic update: read-only
ssl.endpoint.identification.algorithm- The endpoint identification algorithm to validate server hostname using server certificate.
- Type: string
- Default: https
- Valid Values:
- Importance: low
Dynamic update: per-broker
ssl.engine.factory.class- The class of type org.apache.kafka.common.security.auth.SslEngineFactory to provide SSLEngine objects. Default value is org.apache.kafka.common.security.ssl.DefaultSslEngineFactory. Alternatively, setting this to org.apache.kafka.common.security.ssl.CommonNameLoggingSslEngineFactory will log the common name of expired SSL certificates used by clients to authenticate at any of the brokers with log level INFO. Note that this will cause a tiny delay during establishment of new connections from mTLS clients to brokers due to the extra code for examining the certificate chain provided by the client. Note further that the implementation uses a custom truststore based on the standard Java truststore and thus might be considered a security risk due to not being as mature as the standard one.
- Type: class
- Valid Values:
- Importance: low
Dynamic update: per-broker
ssl.principal.mapping.rules-
A list of rules for mapping from distinguished name from the client certificate to short name. The rules are evaluated in order and the first rule that matches a principal name is used to map it to a short name. Any later rules in the list are ignored. By default, distinguished name of the X.500 certificate will be the principal. For more details on the format please see security authorization and acls. Note that this configuration is ignored if an extension of KafkaPrincipalBuilder is provided by the
principal.builder.classconfiguration.
- Type: string
- Default: DEFAULT
- Valid Values:
- Importance: low
Dynamic update: read-only
ssl.secure.random.implementation- The SecureRandom PRNG implementation to use for SSL cryptography operations.
- Type: string
- Valid Values:
- Importance: low
Dynamic update: per-broker
telemetry.max.bytes- The maximum size (after compression if compression is used) of telemetry metrics pushed from a client to the broker. The default value is 1048576 (1 MB).
- Type: int
- Default: 1048576 (1 mebibyte)
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
transaction.abort.timed.out.transaction.cleanup.interval.ms- The interval at which to rollback transactions that have timed out.
- Type: int
- Default: 10000 (10 seconds)
- Valid Values: [1,…]
- Importance: low
Dynamic update: read-only
transaction.partition.verification.enable- Enable verification that checks that the partition has been added to the transaction before writing transactional records to the partition.
- Type: boolean
- Default: true
- Valid Values:
- Importance: low
Dynamic update: cluster-wide
transaction.remove.expired.transaction.cleanup.interval.ms-
The interval at which to remove transactions that have expired due to
transactional.id.expiration.mspassing.
- Type: int
- Default: 3600000 (1 hour)
- Valid Values: [1,…]
- Importance: low
- Dynamic update: read-only