jsancio commented on code in PR #12183:
URL: https://github.com/apache/kafka/pull/12183#discussion_r882941312
##########
core/src/main/scala/kafka/server/KafkaConfig.scala:
##########
@@ -1661,6 +1666,10 @@ class KafkaConfig private(doLog: Boolean, val props:
java.util.Map[_, _], dynami
/************* Metadata Configuration ***********/
val metadataSnapshotMaxNewRecordBytes =
getLong(KafkaConfig.MetadataSnapshotMaxNewRecordBytesProp)
+ val metadataMaxIdleIntervalMs: Option[Int] = {
Review Comment:
Done.
##########
core/src/main/scala/kafka/server/KafkaConfig.scala:
##########
@@ -1148,6 +1153,7 @@ object KafkaConfig {
.define(MetadataLogSegmentMillisProp, LONG, Defaults.LogRollHours * 60 *
60 * 1000L, null, HIGH, MetadataLogSegmentMillisDoc)
.define(MetadataMaxRetentionBytesProp, LONG, Defaults.LogRetentionBytes,
null, HIGH, MetadataMaxRetentionBytesDoc)
.define(MetadataMaxRetentionMillisProp, LONG, Defaults.LogRetentionHours
* 60 * 60 * 1000L, null, HIGH, MetadataMaxRetentionMillisDoc)
+ .define(MetadataMaxIdleIntervalMsProp, INT,
Defaults.MetadataMaxIdleIntervalMs, null, LOW, MetadataMaxIdleIntervalMsDoc)
Review Comment:
Done.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]