InstanceAlreadyExistsException coming from kafka consumer
问题 I am working with Kafka and trying to setup consumer group by follwing this article. The only difference is I have created my own abstract class, handler to make design simpler. Below is my abstract class: public abstract class Consumer implements Runnable { private final Properties consumerProps; private final String consumerName; public Consumer(String consumerName, Properties consumerProps) { this.consumerName = consumerName; this.consumerProps = consumerProps; } protected abstract void