这篇文章上次修改于 2124 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 ##### Commit cannot be completed since the group has already rebalanced and assigned the partitions to another member. This means that the time between subsequent calls to poll() was longer than the configured max.poll.interval.ms, which typically implies that the poll loop is spending too much time message processing. You can address this either by increasing the session timeout or by reducing the maximum size of batches returned in poll() with max.poll.records. ####这个是因为kakfa一次poll的太多了, ```yaml spring: kafka: bootstrap-servers: ${kafka.host} consumer: group-id: tv.rr.bus enable-auto-commit: false max-poll-records: 350 # 改成50 ```
没有评论