Re: Delete topic API in 0.8.2

2015-01-23 Thread Harsha
Sumit, You can use AdminUtils.deleteTopic(zkClient, topicName) . This will initiate the deleteTopic process by zookeeper notification to KafkaController.deleteTopicManager. It deletes log files along with zookeeper topic path as Timothy mentioned. -Harsha On Fri, Jan

Re: Delete topic API in 0.8.2

2015-01-23 Thread Timothy Chen
I believe that's the only way it's supported from the CLI. Delete topic actually fully removes the topic from the cluster, which also includes cleaning the logs and removing it from zookeeper (once it is fully deleted). Tim On Fri, Jan 23, 2015 at 12:13 PM, Sumit Rangwala

Re: Delete topic API in 0.8.2

2015-01-23 Thread Sumit Rangwala
Thanks Harsha, exactly what I was looking for. Sumit On Fri, Jan 23, 2015 at 12:24 PM, Harsha ka...@harsha.io wrote: Sumit, You can use AdminUtils.deleteTopic(zkClient, topicName) . This will initiate the deleteTopic process by zookeeper notification to