Skip to the content.

Kafka Zero To Pro


⛏️ “A stone is broken by the last stroke of the hammer. This does not mean that the first stroke was useless. Success is the result of continuous effort.” ⛏️


This guide will be running Kafka locally in Ubuntu-22.04


Table of Contents 📜


Kafka Architecture 🏗️

Kafka is a distributed streaming platform. It is used to publish and subscribe to streams of records, similar to a message queue or enterprise messaging system. Kafka is used for building real-time data pipelines and streaming apps. It is horizontally scalable, fault-tolerant, wicked fast, and runs in production in thousands of companies.

Use cases include

Kafka only accepts bytes as an input from producers and sends bytes out as an output to consumers. Messages are serialized and deserialized by the producer and consumer respectively. This allows Kafka to be used with any programming language. Serialization and deserialization is used only on keys and values.