Apache Kafka (4 Blogs) Become a Certified Professional

Apache Kafka: Next Generation Distributed Messaging System

Last updated on Nov 30,2021 10.6K Views


In today’s world, data is the main ingredient of internet applications and typically encompasses the following :

  • Page visits and clicks
  • User activities
  • Events corresponding to logins
  • Social networking activities such as likes, shares and comments
  • Application-specific metrics (e.g. logs, page load time, performance etc.)

This data can be used to run analytics in real time serving various purposes, some of which are:

  • Delivering advertisements
  • Tracking abnormal user behaviors
  • Displaying search based on relevance
  • Showing recommendations based on previous activities

Problem: Collecting all the data is not easy as data is generated from various sources in different formats

Solution: One of the ways to solve this problem is to use a messaging system. Messaging systems provide a seamless integration between distributed applications with the help of messages.

apache-kafka-next-generation-distributed-messaging-system

Apache Kafka :

Apache Kafka is a distributed publish subscribe messaging system which was originally developed at LinkedIn and later on became a part of the Apache project. Kafka is fast, agile, scalable and distributed by design.

Kafka Architecture and Terminology :

kafka-cluster

Topic : A stream of messages belonging to a particular category is called a topic

Producer : A producer can be any application that can publish messages to a topic

Consumer : A consumer can be any application that subscribes to topics and consumes the messages

Broker : Kafka cluster is a set of servers, each of which is called a broker

Kafka is scalable and allows creation of multiple types of clusters.

  • Single Node Single Broker Cluster
  • Single Node Multiple Broker Cluster
  • Multiple Nodes Multiple Broker Cluster

single-node-single-brokerSingle Node Single Broker

What’s the role of ZooKeeper ?

Each Kafka broker coordinates with other Kafka brokers using ZooKeeper. Producers and Consumers are notified by the ZooKeeper service about the presence of new brokers or failure of the broker in theKafka system.

single-node-multiple-brokers

                                                         Single Node Multiple Brokers

multiple-node-multiple-broker

                                                         Multiple Nodes Multiple Brokers

Kafka @ LinkedIn

lnewsfeed-kafka-linkedin

                                                        LinkedIn Newsfeed is powered by Kafka

lrecommendations                                           LinkedIn recommendations are powered by Kafka

lnotifications

                                       LinkedIn notifications are powered by Kafka

Note: Apart from this, LinkedIn uses Kafka for many other tasks like log monitoring, performance metrics, search improvement, among others.

Who else uses Kafka ?

DataSift: DataSift uses Kafka as a collector of monitoring events and to track users’ consumption of data streams in real time

Wooga: Wooga uses Kafka to aggregate and process tracking data from all their Facebook games (hosted at various providers) in a central location

Spongecell: Spongecell uses Kafka to run its entire analytics and monitoring pipeline driving both real time and ETL applications

Loggly : Loggly is the world’s most popular cloud-based log management. It uses Kafka for log collection.

Comparative Study: Kafka vs. ActiveMQ vs. RabbitMQ

Kafka has a more efficient storage format.On an average, each message has an overhead of 9 bytes in Kafka, versus 144 bytes in ActiveMQ

kafka-storage-cmp1In both ActiveMQ and RabbitMQ, brokers maintain delivery state of every message by writing to disk but in the case of Kafka, there is no disk write, hence making it faster.

kafka-storage-cmp2

With the wide adoption of Kafka in production, it looks to be a promising solution for solving real world problems. Apache Kafka training can help you get ahead of your peers in a real-time analytics career. Get started with an Apache Kafka tutorial here.

Got a question for us? Please mention it in the comments section and we will get back to you or join our Kafka training today.

Related Posts:

Apache Kafka with Spark Streaming

What you need for a career in Real-Time Analytics

Comments
1 Comment
  • Manza John says:

    i have one doubt , i understood kafka like each node is called a kafka broker, if so how you defined ” Single Node Multiple Brokers” above diagram? please explain

Join the discussion

Browse Categories

webinar REGISTER FOR FREE WEBINAR
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP

Subscribe to our Newsletter, and get personalized recommendations.

image not found!
image not found!

Apache Kafka: Next Generation Distributed Messaging System

edureka.co