Kafka Streams error - Offset commit failed on partition, request timed out

拈花ヽ惹草 提交于 2019-12-01 06:38:47

Looks like you have issue with Kafka cluster and Kafka consumer is get timed out while trying to commit offsets. You can try to increase connection related configs for Kafka consumer

  1. request.timeout.ms (by default 305000ms)

The configuration controls the maximum amount of time the client will wait for the response of a request

  1. connections.max.idle.ms (by default 540000ms)

Close idle connections after the number of milliseconds specified by this config.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!