Reader small image

You're reading from  Microservices with Clojure

Product typeBook
Published inJan 2018
Reading LevelIntermediate
PublisherPackt
ISBN-139781788622240
Edition1st Edition
Languages
Right arrow
Author (1)
Anuj Kumar
Anuj Kumar
author image
Anuj Kumar

Anuj Kumar is the co-founder and chief architect of FORMCEPT, a data analytics startup based in Bangalore, India. He has more than 10 years of experience in designing large-scale distributed systems for storage, retrieval, and analytics. He has been in industry hacking, mainly in the area of data integration, data quality, and data analytics using NLP and machine learning techniques. He has published research papers at ACM conferences, got a few patents granted, and has spoken at TEDx. Prior to FORMCEPT, he has worked with the Oracle Server Technologies division in Bangalore, India.
Read more about Anuj Kumar

Right arrow

Introduction to Apache Kafka


Apache Kafka is a distributed streaming platform that allows applications to publish and subscribe to a stream of records. Apache Kafka is not just a message queue, it also allows applications to publish the events that are then stored by Kafka as an immutable log in a fault-tolerant way. It allows the producers and consumers of the events to scale horizontally without affecting each other. Since the events are logged in the same sequence as they are published within Kafka, it allows consumers to replay the log from and up to the desired point to reconstruct views of the application state.

Design principles

Kafka is run as a cluster of one or more servers that act as message brokers (https://en.wikipedia.org/wiki/Message_broker) in the system. Kafka categorizes the stream of records under topics that are used by producers and consumers to produce records and consume them, respectively. Each record consists of a key-value pair and a timestamp.

A typical Kafka cluster...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Microservices with Clojure
Published in: Jan 2018Publisher: PacktISBN-13: 9781788622240

Author (1)

author image
Anuj Kumar

Anuj Kumar is the co-founder and chief architect of FORMCEPT, a data analytics startup based in Bangalore, India. He has more than 10 years of experience in designing large-scale distributed systems for storage, retrieval, and analytics. He has been in industry hacking, mainly in the area of data integration, data quality, and data analytics using NLP and machine learning techniques. He has published research papers at ACM conferences, got a few patents granted, and has spoken at TEDx. Prior to FORMCEPT, he has worked with the Oracle Server Technologies division in Bangalore, India.
Read more about Anuj Kumar