Re: Can we delete topic in kafka

2016-05-11 Thread Eduardo Costa Alfaia
I have used: ./kafka-topics.sh --delete --topic unibs --zookeeper 127.0.0.1:2181 It did work for me: ~/Downloads/kafka_2.11-0.9.0.1/bin$ ./kafka-topics.sh --list --zookeeper 127.0.0.1:2181 unibs ~/Downloads/kafka_2.11-0.9.0.1/bin$ ./kafka-topics.sh --delete --topic unibs --zookeeper 127.0.0.1:

Re: Can we delete topic in kafka

2016-05-11 Thread Jaikiran Pai
That's actually not the right way to delete topics (or for that matter managing a Kafka instance). It can lead to odd/corrupt installation. -Jaikiran On Wednesday 11 May 2016 06:27 PM, Eduardo Costa Alfaia wrote: Hi, It’s better creating a script that delete the kafka folder where exist the k

Re: Can we delete topic in kafka

2016-05-11 Thread Eduardo Costa Alfaia
Hi, It’s better creating a script that delete the kafka folder where exist the kafka topic and after create it again if need. BR Eduardo Costa Alfaia Ph.D. Student in Telecommunications Engineering Università degli Studi di Brescia Tel: +39 3209333018 On 5/11/16, 09:48, "Snehalata Nagaj

Re: Can we delete topic in kafka

2016-05-11 Thread Portal Operations
If it’s marked, he configured it. I recently tried it and it doesn’t mark it otherwise. Am 11.05.16, 09:51 schrieb "Jan Omar" : >You have to allow topic deletion in server.properties first. > >delete.topic.enable = true > >Regards > >Jan > >> On 11 May 2016, at 09:48, Snehalata Nagaje >> wr

Re: Can we delete topic in kafka

2016-05-11 Thread Snehalata Nagaje
I am using 0.9.0.1 - Original Message - From: "Jörg Wagner" To: users@kafka.apache.org Sent: Wednesday, May 11, 2016 1:20:37 PM Subject: Re: Can we delete topic in kafka Depending on your version of kafka it may or may not work. Before 0.8.2 it didn't work afaik and on

Re: Can we delete topic in kafka

2016-05-11 Thread Jan Omar
You have to allow topic deletion in server.properties first. delete.topic.enable = true Regards Jan > On 11 May 2016, at 09:48, Snehalata Nagaje > wrote: > > > > Hi , > > Can we delete certain topic in kafka? > > I have deleted using command > > ./kafka-topics.sh --delete --topic top

Re: Can we delete topic in kafka

2016-05-11 Thread Jörg Wagner
Depending on your version of kafka it may or may not work. Before 0.8.2 it didn't work afaik and on 0.8.2 it works unrealiably from my experience. Can't comment on 0.9 forward. Cheers On 11.05.2016 09:48, Snehalata Nagaje wrote: Hi , Can we delete certain topic in kafka? I have deleted us

Can we delete topic in kafka

2016-05-11 Thread Snehalata Nagaje
Hi , Can we delete certain topic in kafka? I have deleted using command ./kafka-topics.sh --delete --topic topic_billing --zookeeper localhost:2181 It says topic marked as deletion, but it does not actually delete topic. Thanks, Snehalata