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. After downloading, refer to the Documentation to. Kafka Desktop Client - Beautiful UI. Managing Kafka Brokers is enjoyable. List all Kafka Brokers Find and Change Kafka Controller View Kafka Version View, modify and fix Kafka Configurations Configuration discrepancy alert Kafka Rack Visualization Kafka Broker Skew and Size Leader Balance Broker Decomissioning View Under Replicated Partitions (Rolling) Restart of Kafka. Kafka Tool 1.0.2 for Mac can be downloaded from our software library for free. Our built-in antivirus checked this Mac download and rated it as 100% safe. The current setup file available for download occupies 51.4 MB on disk. Kafka Tool for Mac lies within System Tools, more precisely File Managers.
Apache Kafka is an open-source message broker project developed by the Apache Software Foundation written in Scala. The project aims to provide a high-throughput, low-latency platform capable of handling hundreds of megabytes of reads and writes per second from thousands of clients.
Following tutorial shows how to download and install Apache Kafka on Windows and perform a start/stop of the installed instance.
If you want to learn more about how to connect to Apache Kafka - head on over to the Spring Kafka tutorials page.
It is important to note that Kafka will not work without Apache ZooKeeper, which is essentially a distributed hierarchical key-value store. Like Kafka, ZooKeeper is a software project of the Apache Software Foundation. Kafka uses ZooKeeper for electing a controller, cluster membership, topic configuration, quotas and ACLs.
Note that for running Kafka and ZooKeeper, a Java Runtime Environment needs to be installed and configured (with JAVA_HOME correctly set). If you are not sure if Java is installed on your machine, open a console and execute the following command:
Head over to the Apache ZooKeeper download page and and click on the download link in the Download section. This will redirect to a mirror site, click on the suggested mirror link and from the index select the stable directory as shown below. Download the gzipped TAR file.
At the moment of writing this tutorial, the latest stable release was zookeeper-3.4.9.
Extract the archive that was downloaded in the previous step. The extracted root directory should contain a number of files and subdirectories as shown below. From now on we will refer to this directory as: [zookeeper_install_dir].
Follow the below steps in order to setup a minimal working ZooKeeper configuration:
- Navigate to the ZooKeeper configuration directory located under [zookeeper_install_dir]/conf.
- Copy the file zoo_sample.cfg and rename to zoo.cfg.
- Open the newly created zoo.cfg in a text editor.
- Find the “dataDir=/tmp/zookeeper” entry and change it to “dataDir=C:/temp/zookeeper”. Make sure to use forward slashes in the path name!
- Next, set the 'ZOOKEEPER_HOME' and corresponding 'PATH' environment variables. Click the Windows Start button and then type “env” without quotes in the search box. Select the Edit environment variables for your account entry, this will open the environment variables window.
- Add a new variable using “ZOOKEEPER_HOME” as name and “[zookeeper_install_dir]” as value. Click “OK” to to save.
- Edit (or add if it doesn’t exist) the variable with name “PATH” and add “;%ZOOKEEPER_HOME%bin” to the end of the value. Click “OK” to save.
Now that ZooKeeper is configured, let’s go ahead and start it. Open a command prompt by clicking on the Windows Start button and typing “cmd” followed by pressing “ENTER”. Use the following command to startup ZooKeeper:
By default, ZooKeeper will generate a number of log statements at start-up as shown below. One of the log entries will mention 'binding to port 0.0.0.0/0.0.0.0:2181'. This indicates that ZooKeeper was successfully started.
Open the Kafka releases page which contains the latest binary downloads. Kafka is written in Scala, which is a programming language that has full support for functional programming. Scala source code is intended to be compiled to Java bytecode so that the resulting executable code runs on a Java virtual machine.
You’ll notice that the release page contains multiple versions of Scala for a specific Kafka release. This only matters if you are using Scala yourself. If not the case, go ahead and choose the highest supported version.
At the moment of writing the latest stable release was kafka_2.11-0.10.0.1.tgz.
Extract the gzipped TAR file, downloaded in the previous step. The extracted root directory should contain a number of files and subdirectories as shown below. From now on we will refer to this directory as: [kafka_install_dir].
Make sure to extract to a directory path that does not contain spaces.
Follow the below steps in order to setup a minimal working Kakfa configuration:
- Navigate to the Kafka configuration directory located under [kafka_install_dir]/config.
- Edit the file server.properties in a text editor.
- Find the “log.dirs=/tmp/kafka-logs” entry and change it to “log.dirs=C:/temp/kafka-logs”. Make sure to use forward slashes in the path name!
Make sure Zookeeper is up and running before starting Kafka.
In order to start Kafka, open a command prompt by clicking on the Windows Start button and typing “cmd” followed by pressing “ENTER”. Navigate to the [kafka_install_dir]. Use following command to startup Kafka:
When starting, Kafka will generate a number of log statements as shown below. The last log entries will mention '[Kafka Server 01], started'. This means that a Kafka instance is up and running.
This concludes installing ZooKeeper and Kafka on Windows.
Kafka Tool Download Mac
If you found this post helpful or have any questions or remarks, please leave a comment.