Error UNKNOWN_MEMBER_ID occurred while committing offsets for group ***

来源:互联网 发布:老男孩linux培训课件 编辑:程序博客网 时间:2024/06/07 03:04

        遇到这个问题,一般会造成kafka offset不断变换,导致重复消费,实际这个方法是因为提交事务超时导致,解决的办法也非常简单,就是增加超时时长控制

        先看看stackoverflow上的说法:

        I just faced the same issue. I have been investigating, and in this thread and in this wiki you can find the solution.        The issue seems to be that the processing of a batch takes longer than the session timeout. Either increase the session timeout or the polling frequency or limit the number of bytes received.        What worked for me was changing max.partition.fetch.bytes. But you can also modify session.timeout.ms or the value you pass to your consumer.poll(TIMEOUT)

        调整session.timeout.ms需要注意,kafkay有相关连配置,request.timeout.ms必须大于session.timeout.ms和fetch.max.wait.ms

        fetch.max.wait.ms默认为500,request.timeout.ms默认为30000

org.apache.kafka.common.config.ConfigException: request.timeout.ms should be greater than session.timeout.ms and fetch.max.wait.ms


        经调整,flume 1.7.0 kafka_channel增加如下配置:

agent1.channels.c2.kafka.consumer.session.timeout.ms=100000agent1.channels.c2.kafka.consumer.request.timeout.ms=110000agent1.channels.c2.kafka.consumer.fetch.max.wait.ms=1000


阅读全文
0 0
原创粉丝点击