for topic in `cat /tmp/topics.txt`; do echo $topic; sh kafka-topics.sh
--bootstrap-servers localhost:9092 --topic $topic --delete; done
# you can also delete the topics by wildcard sh kafka-topics.sh
--bootstrap-servers localhost:9092 --topic abc.* --delete
On Tue, Jan 23, 2024 at 11:50 AM sunil c
Hey all, I figured I'd give an update about what known blockers we have
right now:
- KAFKA-16101: KRaft migration rollback documentation is incorrect -
https://github.com/apache/kafka/pull/15193; This need not block RC
creation, but we need the docs updated so that people can test properly
- KAFKA