You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are getting RecordTooLargeException when the connector tries to produce a message to the control topic.
re\nCaused by: org.apache.kafka.common.errors.RecordTooLargeException: The message is 7222162 bytes when serialized which is larger than 1048576, which is the value of the max.request.size configuration.\n"
Can you suggest some ways to reduce the message size that the connector produces to Kafka control topic. We have tried the following configuration inorder to reduce the message size but that doesn't seem to help :
It is not possible to increase max.request.size producer config as it is controlled by different team. This exception is occurring for control topic.
I would like to understand why control topic message is becoming bigger than 1 MB
Schema can also be embedded in the record as well, depending on config, so check that. If not, it might just be that you have a lot of data so you need to dig into the data payload.
max.request.size is a producer config, so unless another team controls your application producer, iceberg.kafka.producer.override.max.request.size should solve that issue 👀
Hi Team
We are getting RecordTooLargeException when the connector tries to produce a message to the control topic.
re\nCaused by: org.apache.kafka.common.errors.RecordTooLargeException: The message is 7222162 bytes when serialized which is larger than 1048576, which is the value of the max.request.size configuration.\n"
Can you suggest some ways to reduce the message size that the connector produces to Kafka control topic. We have tried the following configuration inorder to reduce the message size but that doesn't seem to help :
This has been a huge blocker for us as we cannot increase these limits on the Kafka broker end. Can you please suggest a fix for the same.
QQ: Is there an enterprise version for this connector ?
Here is the connector config :
The text was updated successfully, but these errors were encountered: