I am using Kafka 0.8.0, this is the version of Cloudera. When I deleted the topic, for example: kafka-topics --zookeeper 10.0.0.11:2181/ --delete --topic test
this is the answer:
Topic test is already marked for deletion.
But then I recreated it, he selected the exception as follows:
kafka-topics --create --zookeeper 10.0.0.11:2181 --partitions 90 --replication-factor 2 --topic test
Error while executing topic command Topic "test" already exists.
kafka.common.TopicExistsException: Topic "test" already exists.
Any ideas please? How to delete a topic and its data.
source
share