Created 04-12-2018 05:00 PM
Has anybody ever tried to delete unneeded Kafka Topics with a job or in some sort of automated fashion?
Created 04-12-2018 05:32 PM
Make sure that topic deletion enabled at the broker level (delete.topic.enable=true) in the entire cluster, and restart it?
Here is how the delete works in Kafka
Check this Github with scripts to delete topics you can readapt it
Hope that helps
Created 04-12-2018 05:32 PM
Make sure that topic deletion enabled at the broker level (delete.topic.enable=true) in the entire cluster, and restart it?
Here is how the delete works in Kafka
Check this Github with scripts to delete topics you can readapt it
Hope that helps
Created 06-20-2018 10:23 PM
That worked perfectly. Thanks!