junrao commented on code in PR #19371: URL: https://github.com/apache/kafka/pull/19371#discussion_r2100793274
########## storage/src/main/java/org/apache/kafka/storage/internals/log/LogConfig.java: ########## @@ -446,6 +447,14 @@ public static List<String> configNames() { return CONFIG.names().stream().sorted().toList(); } + public static List<String> excludeInternalConfigNames() { Review Comment: excludeInternalConfigNames => nonInternalConfigNames ? ########## core/src/main/scala/kafka/raft/KafkaMetadataLog.scala: ########## @@ -589,8 +589,9 @@ object KafkaMetadataLog extends Logging { ): KafkaMetadataLog = { val props = new Properties() props.setProperty(TopicConfig.MAX_MESSAGE_BYTES_CONFIG, config.maxBatchSizeInBytes.toString) - props.setProperty(TopicConfig.SEGMENT_BYTES_CONFIG, config.logSegmentBytes.toString) - props.setProperty(TopicConfig.SEGMENT_MS_CONFIG, config.logSegmentMillis.toString) + // Since MetadataLogConfig validates the log segment size using a minimum allowed value, + // we can safely use `internal.segment.bytes` to configure it instead of relying on `segment.bytes`. + props.setProperty(LogConfig.INTERNAL_SEGMENT_BYTES_CONFIG, config.logSegmentBytes.toString) Review Comment: This could be confusing. If someone turns on the debug logging to see the config for the metadata topic, it will be surprising to see INTERNAL_SEGMENT_BYTES_CONFIG being set, even though it's not set by the users. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org