Re: Script to delete list of topics

2024-01-23 Thread Kamal Chandraprakash
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

Re: [VOTE] 3.7.0 RC2

2024-01-23 Thread Stanislav Kozlovski
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