Overview and Getting Started with Kafka highlighting the key concepts & simple demo to get started
GETTING STARTED WITH KAFKA
Setting up Kafka
----------------
Start the server
----------------
bin/zookeeper-server-start.sh config/zookeeper.properties
bin/kafka-server-start.sh config/server.properties
Create a topic
--------------
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
See the topics
--------------
bin/kafka-topics.sh --list --zookeeper localhost:2181
bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic test
Create messages
---------------
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
Start a consumer
----------------
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning
- Getting Started with Kafka - Concepts & Simple Demo ( Download)
- Apache Kafka in 6 minutes ( Download)
- Kafka in 100 Seconds ( Download)
- 3. Apache Kafka Fundamentals | Apache Kafka Fundamentals ( Download)
- Kafka Tutorial - Core Concepts ( Download)
- Apache Kafka 101: Your First Kafka Application in 10 Minutes or Less (Hands On - 2023) ( Download)
- Apache Kafka in 5 minutes ( Download)
- Apache Kafka, Simply Explained ( Download)
- Kafka Streams 101: Getting Started (2023) ( Download)
- Getting Started with Kafka and Java: A Beginner’s Guide - kafka Tutorial ( Download)
- Apache Kafka Explained For Beginners | Everything Needed To Get Started With Kafka | Kafka Tutorial ( Download)
- Apache Kafka: The Crash Course ( Download)
- Kafka Tutorial - Quick Start Demo ( Download)
- Apache Kafka in 6 minutes: Apache Kafka Tutorial #1 ( Download)
- Kafka Basics and Demo ( Download)