I'm attempting to send a 10770128 byte message over Kafka. I am receiving the following error:
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.
I've gone through and added the following settings to server.properties, producer.properties, and 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
this is a three node kafka cluster. Each node has the above settings in each file. Any help is appreciated. Thank you :)
Edit: I have already attempted the configurations seen Here, yet the problem persists