org.apache.kafka.common.errors.ApiException:会话超时不在可接受的范围内

时间:2016-03-30 02:35:06

标签: apache-kafka kafka-consumer-api kafka-producer-api

我在使用kafka 0.9.0.1的消费者中获得了异常。根据这个帖子[1],我没有在server.properties文件中看到“group.max.session.timeout.ms”属性。

org.apache.kafka.common.errors.ApiException: The session timeout is not within an acceptable range

有任何线索吗?

[1] http://comments.gmane.org/gmane.comp.apache.kafka.user/12426

1 个答案:

答案 0 :(得分:1)

kafka中有一个服务器端配置限制了最大超时值:

group.max.session.timeout.ms

如果未设置,默认值为30000毫秒。

它位于“/config/server.properties”。

将其设置为高于消费者超时的值,您将没事。