How to dynamically add consumers in consumer group kafka
问题 How should I know when i have to scale the consumer in consumer group . What are the triggers for the consumers to scale when there is a fast producer ? 回答1: In Kafka while creating a topic, need to provide number of partitions and replication factor . Let say there is one topic called TEST with 10 partitions, for parallel consumption of data need to create consumer group with 10 consumers, where each consumer will be consuming the data from the respective partition. Here is the catch, if the