我正在尝试通过Kafka发送10770128字节消息。我收到以下错误:
org.apache.kafka.common.errors.RecordTooLargeException: The message is 10770128 bytes when serialized which is larger than the maximum request size you have configured with the max.request.size configuration.
我已经仔细研究了以下设置,并将以下设置添加到server.properties,producer.properties和Consumer.properties。
replica.fetch.max.bytes =12000000
message.max.bytes=12000000
max.message.bytes=12000000
max.request.size=12000000
max.message.max.bytes=12000000
max.partition.fetch.bytes=12000000
这是一个三节点kafka群集。每个节点在每个文件中都有上述设置。任何帮助表示赞赏。谢谢:)
编辑:我已经尝试过Here看到的配置,但问题仍然存在