I need to delete the topic "demo". The Kafka version installed on my system is Apache Kafka 0.8.1.1.
As given in the documentation, I have executed:
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic demo
However, I'm getting the following message:
Command must include exactly one action: --list, --describe, --create or --alter
Is there any way to delete this topic?
Thanks in advance!