We recently switched to Reactive Kafka. It seems kafka does not throw any error if the topic exists while creating stream for the topic. Why is it so?
I know that existence of a topic can explicitly be checked with AdminUtils.topicExists(zkClient, topicName)
. Is there a way to force reactive kafka to check if topic exists on its own before creating streams?