Kafka Consumer: No entry found for connection

后端 未结 6 2408
甜味超标
甜味超标 2021-02-05 12:24

I am trying to check the kafka consumer by consuming the data from a topic on a remote Kafka cluster. I am getting the following error when I use the kafka-console-consume

6条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-05 13:06

    In my case, it was not able to find broker id (2147475658) mentioned in error.

    No entry found for connection 2147475658

    You can create a broker with id 2147475658 by setting broker.id property in server.properties file. Create separate server.properties files for all brokers.

    Or If you have at least one alive broker, then you can delete/remove broker which is giving error.

    Documentation Link : https://kafka.apache.org/documentation/#quickstart_multibroker

提交回复
热议问题