Skip to content

Instantly share code, notes, and snippets.

@dainiusjocas
Created May 4, 2020 09:10
Show Gist options
  • Save dainiusjocas/3a9f10d2a8b2e7951fd92b5bb1e5fdbd to your computer and use it in GitHub Desktop.
Save dainiusjocas/3a9f10d2a8b2e7951fd92b5bb1e5fdbd to your computer and use it in GitHub Desktop.
Delete kafka topics by pattern
./bin/kafka-topics.sh --zookeeper localhost:2181 --list | grep my_pattern | while read topic; do ./bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic $topic; done
@dainiusjocas
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment