Kafka CLI kaf
Kafka is super popular and powerful data streaming platform but I’m surprised by lack of easy cli tool. To find out version, there is no such thing as kafka --version you do: $ find /opt/kafka/libs/ -name kafka_\* | head -1 /opt/kafka/libs/kafka_2.13-2.4.0-test-sources.jar where 2.13 is scala version and 2.4.0 is kafka version. One tool that I played with is lovely called kaf, “Modern CLI for Kafka”. to list topics, you do: sudo bin/kafka-topics.sh --list --bootstrap-server localhost:9092 whereas with kaf you do: ...