Apache Kafka in a nutshell

A gentle introduction to Kafka

Giorgos Myrianthous
3 min readJul 6, 2019

--

Photo by Franki Chamaki on Unsplash

What is Apache Kafka?

Apache Kafka was initially designed and implemented by LinkedIn in order to serve as a message queue. Since 2012, Kafka has been open sourced under Apache Foundation and quickly evolved into a distributed streaming platform, which is used for the implementation of real-time data pipelines and streaming applications.

It is horizontally scalable, fault-tolerant, wicked fast, and runs in production in thousands of companies.

Kafka is a fault-tolerant and horizontally scalable platform, that can scale to hundreds of brokers being able to process millions of records per second. It was designed to simplify data pipelines, handle data streams and support batch and real-time analytics. It also supports at most once, at least once and exactly once semantic processing guarantees.

Why organisations use Kafka?

Modern organisations have various data pipelines that facilitate the communication between systems or services. Things get a bit more complicated when a reasonable number of services need to communicate with each other at real time.

The architecture becomes complex since various integrations are required in order to enable the inter-communication of these services. More precisely, for an architecture that encompasses m source and n target services, n x m distinct integrations need to be written. Also, every integration comes with a different specification, meaning that one might require a different protocol (HTTP, TCP, JDBC, etc.) or a different data representation (Binary, Apache Avro, JSON, etc.), making things even more challenging. Furthermore, source services might address increased load from connections that could potentially impact latency.

Decoupling data pipelines with Kafka

--

--

Giorgos Myrianthous

I strive to build data-intensive systems that are not only functional, but also scalable, cost effective and maintainable over the long term.