kafka报错: org.apache.kafka.clients.consumer.CommitFailedException: 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.
这个是因为:一个consumer在生产消息,另一个consumer在消费它的消息,他们不能在一个groupid 下面,更改其中一个的group id 即可
我的是分模块的开发,kafka生产者是在另一个A模块的,该模块是由其他同事负责开发,我在B模块负责接收数据进行处理,按照之前网上的添加session.timeout.ms=60000 也没有用,后来看到上面的更改了groupid 可以了