Leader brokers without a matching listener error in kafka

后端 未结 7 2109
北荒
北荒 2021-02-05 15:38

What is the meaning of this kafka error ?

[2018-08-22 11:40:49,429] WARN [Consumer clientId=consumer-1, groupId=console-consumer-62114] 1 partitions hav

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-05 16:11

    jumping_monkey's bonus on checking the directories is helpful. For me, I was deploying with Bitnami Kafka. On first deploy I was not config in the helm values. I wanted to change retention down to minutes, and set that:

    config: |-
      log.retention.minutes=10
    

    This caused the log.dirs directory to switch from /bitnami/kafka/data to /tmp/logs.

    Essentially where the data is being stored on the Kafka brokers caused the error to show up.

提交回复
热议问题