I have installed kafka-0.8.2.2 using homebrew as mentioned in the below linkhttps://dtflaneur.wordpress.com/2015/10/05/installing-kafka-on-mac-osx/
i have configured only 1 broker..
To download the Kafka UI Tool for your operating system, use the links below. All versions of Kafka Tool come with a bundled JRE with the exception of the Linux version. For Linux, you must have Java 8 installed on your operating system before using Kafka Tool. Apache Kafka Series - Kafka Connect Hands-on Learning. A recent Windows / Mac / Linux machine with minimum 4GB of RAM, 5 GB of disk space. Kafka Connect is a tool for scalable and reliable streaming data between Apache Kafka and other data systems. Apache Kafka Connect is a common framework for Apache Kafka producers and consumers.
Able to run zookeeper,kafka ,consumer,producer and publish messages using producer console and see messages in consumer console...
but when im trying to run below script im seeing this script is missing..
- kafka-consumer-groups.sh
basically i want to see the
- consumer group list
- number of partitions available (would like to know the number of partitions present in broker)
Paint Tool For Mac
and when i ran echo $KAFKA_HOME it gives empty i mean no value...
but when i ran brew install kafkaWarning: kafka-0.8.2.2 already installed
im concerened if kafka is installed properly..please suggest
Kafka Tool For Mac
able to see below scripts under usr/local/bin/
not sure if any other scripts were than which i pointed out...
shiv455shiv4551 Answer
kafka-consumer-groups.sh
is only available from 0.9
.
Each topic (not broker) consists of partitions, so to check out partitions of a topic you can use:/bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic your_topic_name
Screenshot Tool For Mac
I don't know about brew installation of Kafka, since I'm using Docker, where you have a single command installation and you don't mess with your local file system. I wholeheartedly suggest that you try that (I can provide you with more details about that if you choose to go the Docker way).