org.apache.kafka.common.errors.RecordTooLargeException: There are some messages at [Partition=Offset]: {ME1000002013-8=4791187} whose size is larger than the fetch size 1048576 and hence cannot be returned. Please considering upgrading your broker to 0.10.1.0 or newer to avoid this issue. Alternately, increase the fetch size on the client (using max.partition.fetch.bytes)
2 背景
1) 消息队列使用的是Kafka
2) 客户端消费者使用spring boot方式进行的集成
3 原因分析1048576字节=1MB,消费者在消费Kafka消息的时候,默认会进行单条消息大小的控制,默认
值就是1MB。
4 解决方案spring boot 配置文件加入配置,设置拉取消息的最大值即可
spring: kafka: consumer: properties: max.partition.fetch.bytes: 104857600
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)