I have created two kafka brokers in a kafka cluster. When one broker is down I am not able to get any data to kafka consumer. I am using this command to read messages from consumer:
bin/kafka-console-consumer.sh --topic test_kafka_cluster \
--bootstrap-server 127.0.0.1:9092,127.0.0.2:9092 --from-beginning
There are two parameters that affect topics availability for a consumer:
min.insync.replicas
(minISR): Minimum number of in-sync partition's replicas.replication.factor
(RF): Total number of partition's replicas.If you want your consumer to survive a broker outage, then you must have
RF > minISR
. WithRF=2 and minISR=2
you can't tolerate any broker down, withRF=3 and minISR=2
you can tolerate 1 broker down, withRF=5 and minISR=2
you can tolerate 3 brokers down, and so on.Note that the internal
__consumer_offsets
topic is used to store consumer offsets and has a default RF value of 3, which is not achievable in your cluster of 2 nodes. So you also need to setoffsets.topic.replication.factor=1
at the cluster level.