ijuma commented on code in PR #19320: URL: https://github.com/apache/kafka/pull/19320#discussion_r2027719011
########## clients/src/main/java/org/apache/kafka/common/config/TopicConfig.java: ########## @@ -107,8 +107,6 @@ public class TopicConfig { public static final String MAX_MESSAGE_BYTES_CONFIG = "max.message.bytes"; public static final String MAX_MESSAGE_BYTES_DOC = "The 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."; Review Comment: We can also delete all these lines. The only thing we need to remain is "The largest record batch size allowed by Kafka (after compression if compression is enabled)." -- 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