January 2018
Intermediate to advanced
336 pages
7h 56m
English
Apache Kafka is an open-source platform and can be downloaded from its download page (https://kafka.apache.org/downloads). For the examples in this book, download and extract the 1.0.0 release (https://www.apache.org/dyn/closer.cgi?path=/kafka/1.0.0/kafka_2.11-1.0.0.tgz) from one of the mirrors, as shown here:
# download Kafka 1.0.0 with Scala 2.11 (Recommended)% wget http://redrockdigimark.com/apachemirror/kafka/1.0.0/kafka_2.11-1.0.0.tgz...# extract Kafka distribution% tar -xvf kafka_2.11-1.0.0.tgz...# switch to Kafka directory% cd kafka_2.11-1.0.0
Apache Kafka Servers require Apache Zookeeper (https://zookeeper.apache.org/) for cluster coordination. Kafka distribution packages a single node Zookeeper instance for convenience; ...
Read now
Unlock full access