SlideShare a Scribd company logo
1Confidential
Kafka Streams: The New Smart Kid On The
Block
The Stream Processing Engine of Apache Kafka
Eno Thereska
eno@confluent.io
enotheres
ka
Big Data London 2016
Slide contributions: Michael Noll
2Confidential
Apache Kafka and Kafka Streams API
3Confidential
What is Kafka Streams: Unix analogy
$ cat < in.txt | grep “apache” | tr a-z A-Z > out.txt
Kafka Core
Kafka Connect Kafka Streams
4Confidential
When to use Kafka Streams
• Mainstream Application
Development
• When running a cluster would suck
• Microservices
• Fast Data apps for small and big data
• Large-scale continuous queries and
transformations
• Event-triggered processes
• Reactive applications
• The “T” in ETL
• <and more>
• Use case examples
• Real-time monitoring and intelligence
• Customer 360-degree view
• Fraud detection
• Location-based marketing
• Fleet management
• <and more>
5Confidential
Some use cases in the wild & external articles
• Applying Kafka Streams for internal message delivery pipeline at LINE Corp.
• http://developers.linecorp.com/blog/?p=3960
• Kafka Streams in production at LINE, a social platform based in Japan with 220+ million users
• Microservices and reactive applications
• https://speakerdeck.com/bobbycalderwood/commander-decoupled-immutable-rest-apis-with-kafka-streams
• User behavior analysis
• https://timothyrenner.github.io/engineering/2016/08/11/kafka-streams-not-looking-at-facebook.html
• Containerized Kafka Streams applications in Scala
• https://www.madewithtea.com/processing-tweets-with-kafka-streams.html
• Geo-spatial data analysis
• http://www.infolace.com/blog/2016/07/14/simple-spatial-windowing-with-kafka-streams/
• Language classification with machine learning
• https://dzone.com/articles/machine-learning-with-kafka-streams
6Confidential
Architecture comparison: use case example
Real-time dashboard for security monitoring
“Which of my data centers are under attack?”
7Confidential
Architecture comparison: use case example
Other
App
Dashboard
Frontend
App
Other
App
1 Capture business
events in Kafka
2 Must process events with
separate cluster (e.g. Spark)
4
Other apps access latest results
by querying these DBs
3 Must share latest results through
separate systems (e.g. MySQL)
Before: Undue complexity, heavy footprint, many technologies, split ownership with conflicting
priorities
Your
“Job”
Other
App
Dashboard
Frontend
App
Other
App
1 Capture business
events in Kafka
2 Process events with standard
Java apps that use Kafka Streams
3 Now other apps can directly
query the latest results
With Kafka Streams: simplified, app-centric architecture, puts app owners in control
Kafka
Streams
Your App
Conflicting priorities: infrastructure teams vs. product teams
Complexity: a lot of moving pieces that are also complex individually
Is all this a part of the solution or part of your problem?
8Confidential
How do I install Kafka Streams?
• There is and there should be no “installation” – Build Apps, Not
Clusters!
• It’s a library. Add it to your app like any other library.
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams</artifactId>
<version>0.10.0.1</version>
</dependency>
9Confidential
How do I package and deploy my apps? How do I …?
• Whatever works for you. Stick to what you/your company think is the best
way.
• Kafka Streams integrates well with what you already have.
• Why? Because an app that uses Kafka Streams is…a normal Java app.
10Confidential
Available APIs
11Confidential
• API option 1: Kafka Streams DSL (declarative)
KStream<Integer, Integer> input =
builder.stream("numbers-topic");
// Stateless computation
KStream<Integer, Integer> doubled =
input.mapValues(v -> v * 2);
// Stateful computation
KTable<Integer, Integer> sumOfOdds = input
.filter((k,v) -> v % 2 != 0)
.selectKey((k, v) -> 1)
.groupByKey()
.reduce((v1, v2) -> v1 + v2, "sum-of-odds");
The preferred API for most use
cases.
The DSL particularly appeals to users:
• When familiar with Spark, Flink
• When fans of Scala or functional
programming
12Confidential
• API option 2: Processor API (imperative)
class PrintToConsoleProcessor
implements Processor<K, V> {
@Override
public void init(ProcessorContext context) {}
@Override
void process(K key, V value) {
System.out.println("Received record with " +
"key=" + key + " and value=" + value);
}
@Override
void punctuate(long timestamp) {}
@Override
void close() {}
}
Full flexibility but more manual work
The Processor API appeals to users:
• When familiar with Storm, Samza
• Still, check out the DSL!
• When requiring functionality that is
not yet available in the DSL
13Confidential
”My WordCount is better than your WordCount” (?)
Kafka
Spark
These isolated code snippets are nice (and actually quite similar) but they are not very meaningful. In practice, we
also need to read data from somewhere, write data back to somewhere, etc.– but we can see none of this here.
14Confidential
WordCount in Kafka
Word
Count
15Confidential
Compared to: WordCount in Spark 2.0
1
2
3
Runtime model leaks into
processing logic
(here: interfacing from
Spark with Kafka)
16Confidential
Compared to: WordCount in Spark 2.0
4
5
Runtime model leaks into
processing logic
(driver vs. executors)
17Confidential
18Confidential
Kafka Streams key concepts
19Confidential
Key concepts
20Confidential
Key concepts
21Confidential
Key concepts
Kafka Core Kafka Streams
22Confidential
Streams meet Tables
23Confidential
Streams meet Tables
http://www.confluent.io/blog/introducing-kafka-streams-stream-processing-made-simple
http://docs.confluent.io/current/streams/concepts.html#duality-of-streams-and-tables
24Confidential
Motivating example: continuously compute current users per geo-region
4
7
5
3
2
8
Real-time dashboard
“How many users younger than 30y, per region?”
alice Asia, 25y, …
bob
Europe, 46y,
…
… …
user-locations
(mobile team)
user-prefs
(web team)
25Confidential
Motivating example: continuously compute current users per geo-region
4
7
5
3
2
8
Real-time dashboard
“How many users younger than 30y, per region?”
alice Europe
user-locations
alice Asia, 25y, …
bob
Europe, 46y,
…
… …
user-locations
(mobile team)
user-prefs
(web team)
26Confidential
Motivating example: continuously compute current users per geo-region
4
7
5
3
2
8
Real-time dashboard
“How many users younger than 30y, per region?”
alice Europe
user-locations
user-locations
(mobile team)
user-prefs
(web team)
alice Asia, 25y, …
bob
Europe, 46y,
…
… …
alice
Europe, 25y,
…
bob
Europe, 46y,
…
… …
27Confidential
Motivating example: continuously compute current users per geo-region
4
7
5
3
2
8 4
7
6
3
2
7
Alice
Real-time dashboard
“How many users younger than 30y, per region?”
alice Europe
user-locations
alice Asia, 25y, …
bob
Europe, 46y,
…
… …
alice
Europe, 25y,
…
bob
Europe, 46y,
…
… …
-1
+1
user-locations
(mobile team)
user-prefs
(web team)
28Confidential
Same data, but different use cases require different interpretations
alice San Francisco
alice New York City
alice Rio de Janeiro
alice Sydney
alice Beijing
alice Paris
alice Berlin
29Confidential
Same data, but different use cases require different interpretations
alice San Francisco
alice New York City
alice Rio de Janeiro
alice Sydney
alice Beijing
alice Paris
alice Berlin
Use case 1: Frequent traveler status?
Use case 2: Current location?
30Confidential
Same data, but different use cases require different interpretations
“Alice has been to SFO, NYC, Rio, Sydney,
Beijing, Paris, and finally Berlin.”
“Alice is in SFO, NYC, Rio, Sydney,
Beijing, Paris, Berlin right now.”
⚑ ⚑
⚑⚑
⚑
⚑
⚑ ⚑ ⚑
⚑⚑
⚑
⚑
⚑
Use case 1: Frequent traveler status? Use case 2: Current location?
31Confidential
Streams meet Tables
record stream
When you need… so that the topic is
interpreted as a
All the values of a key KStream
then you’d read the
Kafka topic into a
Example
All the places Alice
has ever been to
with messages
interpreted as
INSERT
(append)
32Confidential
Streams meet Tables
record stream
changelog stream
When you need… so that the topic is
interpreted as a
All the values of a key
Latest value of a key
KStream
KTable
then you’d read the
Kafka topic into a
Example
All the places Alice
has ever been to
Where Alice
is right now
with messages
interpreted as
INSERT
(append)
UPDATE
(overwrite
existing)
33Confidential
Motivating example: continuously compute current users per geo-region
KTable<UserId, Location> userLocations = builder.table(“user-locations-topic”);
KTable<UserId, Prefs> userPrefs = builder.table(“user-preferences-topic”);
34Confidential
Motivating example: continuously compute current users per geo-region
alice Europe
user-locations
alice Asia, 25y, …
bob
Europe, 46y,
…
… …
alice
Europe, 25y,
…
bob
Europe, 46y,
…
… …
KTable<UserId, Location> userLocations = builder.table(“user-locations-topic”);
KTable<UserId, Prefs> userPrefs = builder.table(“user-preferences-topic”);
// Merge into detailed user profiles (continuously updated)
KTable<UserId, UserProfile> userProfiles =
userLocations.join(userPrefs, (loc, prefs) -> new UserProfile(loc, prefs));
KTable userProfilesKTable userProfiles
35Confidential
Motivating example: continuously compute current users per geo-region
KTable<UserId, Location> userLocations = builder.table(“user-locations-topic”);
KTable<UserId, Prefs> userPrefs = builder.table(“user-preferences-topic”);
// Merge into detailed user profiles (continuously updated)
KTable<UserId, UserProfile> userProfiles =
userLocations.join(userPrefs, (loc, prefs) -> new UserProfile(loc, prefs));
// Compute per-region statistics (continuously updated)
KTable<UserId, Long> usersPerRegion = userProfiles
.filter((userId, profile) -> profile.age < 30)
.groupBy((userId, profile) -> profile.location)
.count();
alice Europe
user-locations
Africa 3
… …
Asia 8
Europe 5
Africa 3
… …
Asia 7
Europe 6
KTable usersPerRegion KTable usersPerRegion
36Confidential
Motivating example: continuously compute current users per geo-region
4
7
5
3
2
8 4
7
6
3
2
7
Alice
Real-time dashboard
“How many users younger than 30y, per region?”
alice Europe
user-locations
alice Asia, 25y, …
bob
Europe, 46y,
…
… …
alice
Europe, 25y,
…
bob
Europe, 46y,
…
… …
-1
+1
user-locations
(mobile team)
user-prefs
(web team)
37Confidential
Streams meet Tables – in the Kafka Streams DSL
38Confidential
Kafka Streams key features
39Confidential
Key features in 0.10
• Native, 100%-compatible Kafka integration
40Confidential
Native, 100% compatible Kafka integration
Read from Kafka
Write to Kafka
41Confidential
Key features in 0.10
• Native, 100%-compatible Kafka integration
• Secure stream processing using Kafka’s security features
• Elastic and highly scalable
• Fault-tolerant
42Confidential
Scalability, fault tolerance, elasticity
43Confidential
Scalability, fault tolerance, elasticity
44Confidential
Scalability, fault tolerance, elasticity
45Confidential
Scalability, fault tolerance, elasticity
46Confidential
Key features in 0.10
• Native, 100%-compatible Kafka integration
• Secure stream processing using Kafka’s security features
• Elastic and highly scalable
• Fault-tolerant
• Stateful and stateless computations
47Confidential
Stateful computations
• Stateful computations like aggregations or joins require state
• We already showed a join example in the previous slides.
• Windowing a stream is stateful, too, but let’s ignore this for now.
• Example: count() will cause the creation of a state store to keep track of counts
• State stores in Kafka Streams
• … are per stream task for isolation (think: share-nothing)
• … are local for best performance
• … are replicated to Kafka for elasticity and for fault-tolerance
• Pluggable storage engines
• Default: RocksDB (key-value store) to allow for local state that is larger than available RAM
• Further built-in options available: in-memory store
• You can also use your own, custom storage engine
48Confidential
State management with built-in fault-tolerance
State stores
(This is a bit simplified.)
49Confidential
State management with built-in fault-tolerance
State stores
(This is a bit simplified.)
charlie 3
bob 1
alice 1
alice 2
50Confidential
State management with built-in fault-tolerance
State stores
(This is a bit simplified.)
51Confidential
State management with built-in fault-tolerance
State stores
(This is a bit simplified.)
alice 1
alice 2
52Confidential
Key features in 0.10
• Native, 100%-compatible Kafka integration
• Secure stream processing using Kafka’s security features
• Elastic and highly scalable
• Fault-tolerant
• Stateful and stateless computations
• Interactive queries
53Confidential
Interactive Queries
Kafka
Streams
App
App
App
App
1 Capture business
events in Kafka
2 Process the events
with Kafka Streams
4
Other apps query external
systems for latest results
! Must use external systems
to share latest results
App
App
App
1 Capture business
events in Kafka
2 Process the events
with Kafka Streams
3 Now other apps can directly
query the latest results
Before (0.10.0)
After (0.10.1): simplified, more app-centric architecture
Kafka
Streams
App
54Confidential
Key features in 0.10
• Native, 100%-compatible Kafka integration
• Secure stream processing using Kafka’s security features
• Elastic and highly scalable
• Fault-tolerant
• Stateful and stateless computations
• Interactive queries
• Time model
• Windowing
• Supports late-arriving and out-of-order data
• Millisecond processing latency, no micro-batching
• At-least-once processing guarantees (exactly-once is in the works as we speak)
55Confidential
Wrapping Up
56Confidential
Where to go from here
• Kafka Streams is available in Confluent Platform 3.0 and in Apache Kafka 0.10
• http://www.confluent.io/download
• Kafka Streams demos: https://github.com/confluentinc/examples
• Java 7, Java 8+ with lambdas, and Scala
• WordCount, Interactive Queries, Joins, Security, Windowing, Avro integration, …
• Confluent documentation: http://docs.confluent.io/current/streams/
• Quickstart, Concepts, Architecture, Developer Guide, FAQ
• Recorded talks
• Introduction to Kafka Streams:
http://www.youtube.com/watch?v=o7zSLNiTZbA
• Application Development and Data in the Emerging World of Stream Processing (higher level talk):
https://www.youtube.com/watch?v=JQnNHO5506w
57Confidential
Thank You

More Related Content

What's hot (20)

PDF
Power of the Log: LSM & Append Only Data Structures
confluent
 
PPTX
Kafka Streams for Java enthusiasts
Slim Baltagi
 
PDF
Real Time Streaming Data with Kafka and TensorFlow (Yong Tang, MobileIron) Ka...
confluent
 
KEY
Data Models and Consumer Idioms Using Apache Kafka for Continuous Data Stream...
Erik Onnen
 
PDF
Rethinking Stream Processing with Apache Kafka: Applications vs. Clusters, St...
Michael Noll
 
PDF
Deep Dive Into Kafka Streams (and the Distributed Stream Processing Engine) (...
confluent
 
PPTX
Stream Application Development with Apache Kafka
Matthias J. Sax
 
PDF
Deep dive into Apache Kafka consumption
Alexandre Tamborrino
 
PDF
Kafka Summit SF 2017 - Kafka Stream Processing for Everyone with KSQL
confluent
 
ODP
Stream processing using Kafka
Knoldus Inc.
 
PPTX
Capture the Streams of Database Changes
confluent
 
PDF
Event stream processing using Kafka streams
Fredrik Vraalsen
 
PDF
Revitalizing Enterprise Integration with Reactive Streams
Lightbend
 
PDF
Achieving a 50% Reduction in Cross-AZ Network Costs from Kafka (Uday Sagar Si...
confluent
 
PDF
Running large scale Kafka upgrades at Yelp (Manpreet Singh,Yelp) Kafka Summit...
confluent
 
PPTX
Apache Kafka 0.8 basic training - Verisign
Michael Noll
 
PDF
UDF/UDAF: the extensibility framework for KSQL (Hojjat Jafapour, Confluent) K...
confluent
 
PDF
Kafka Summit SF 2017 - Best Practices for Running Kafka on Docker Containers
confluent
 
PPTX
Kafka connect-london-meetup-2016
Gwen (Chen) Shapira
 
PDF
Building Stream Processing Applications with Apache Kafka Using KSQL (Robin M...
confluent
 
Power of the Log: LSM & Append Only Data Structures
confluent
 
Kafka Streams for Java enthusiasts
Slim Baltagi
 
Real Time Streaming Data with Kafka and TensorFlow (Yong Tang, MobileIron) Ka...
confluent
 
Data Models and Consumer Idioms Using Apache Kafka for Continuous Data Stream...
Erik Onnen
 
Rethinking Stream Processing with Apache Kafka: Applications vs. Clusters, St...
Michael Noll
 
Deep Dive Into Kafka Streams (and the Distributed Stream Processing Engine) (...
confluent
 
Stream Application Development with Apache Kafka
Matthias J. Sax
 
Deep dive into Apache Kafka consumption
Alexandre Tamborrino
 
Kafka Summit SF 2017 - Kafka Stream Processing for Everyone with KSQL
confluent
 
Stream processing using Kafka
Knoldus Inc.
 
Capture the Streams of Database Changes
confluent
 
Event stream processing using Kafka streams
Fredrik Vraalsen
 
Revitalizing Enterprise Integration with Reactive Streams
Lightbend
 
Achieving a 50% Reduction in Cross-AZ Network Costs from Kafka (Uday Sagar Si...
confluent
 
Running large scale Kafka upgrades at Yelp (Manpreet Singh,Yelp) Kafka Summit...
confluent
 
Apache Kafka 0.8 basic training - Verisign
Michael Noll
 
UDF/UDAF: the extensibility framework for KSQL (Hojjat Jafapour, Confluent) K...
confluent
 
Kafka Summit SF 2017 - Best Practices for Running Kafka on Docker Containers
confluent
 
Kafka connect-london-meetup-2016
Gwen (Chen) Shapira
 
Building Stream Processing Applications with Apache Kafka Using KSQL (Robin M...
confluent
 

Viewers also liked (20)

PPTX
Introducing Apache Kafka's Streams API - Kafka meetup Munich, Jan 25 2017
Michael Noll
 
PDF
Introducing Kafka Streams: Large-scale Stream Processing with Kafka, Neha Nar...
confluent
 
PDF
Spark Summit EU talk by Christos Erotocritou
Spark Summit
 
PPTX
Kafka for data scientists
Jenn Rawlins
 
PDF
Wrangling Big Data in a Small Tech Ecosystem
Shalin Hai-Jew
 
PPTX
Streaming datasets for personalization
Shriya Arora
 
PPTX
Online learning with structured streaming, spark summit brussels 2016
Ram Sriharsha
 
PPT
Best Practices for testing of SOA-based systems - with examples of SOA Suite 11g
Guido Schmutz
 
PDF
A little bit of clojure
Ben Stopford
 
PDF
Spark Summit EU talk by Ram Sriharsha and Vlad Feinberg
Spark Summit
 
PDF
Big Data & the Enterprise
Ben Stopford
 
PDF
Sessionization with Spark streaming
Ramūnas Urbonas
 
PDF
Continuous Application with Structured Streaming 2.0
Anyscale
 
PDF
Building a Real-Time Forecasting Engine with Scala and Akka
Lightbend
 
PPTX
Introduction to Kafka Cruise Control
Jiangjie Qin
 
PDF
Data Stream Analytics - Why they are important
Paris Carbone
 
PDF
Apache Storm Tutorial
Davide Mazza
 
PDF
Voxxed Days Thesaloniki 2016 - Streaming Engines for Big Data
Voxxed Days Thessaloniki
 
PDF
Lightbend Fast Data Platform
Lightbend
 
PDF
The return of big iron?
Ben Stopford
 
Introducing Apache Kafka's Streams API - Kafka meetup Munich, Jan 25 2017
Michael Noll
 
Introducing Kafka Streams: Large-scale Stream Processing with Kafka, Neha Nar...
confluent
 
Spark Summit EU talk by Christos Erotocritou
Spark Summit
 
Kafka for data scientists
Jenn Rawlins
 
Wrangling Big Data in a Small Tech Ecosystem
Shalin Hai-Jew
 
Streaming datasets for personalization
Shriya Arora
 
Online learning with structured streaming, spark summit brussels 2016
Ram Sriharsha
 
Best Practices for testing of SOA-based systems - with examples of SOA Suite 11g
Guido Schmutz
 
A little bit of clojure
Ben Stopford
 
Spark Summit EU talk by Ram Sriharsha and Vlad Feinberg
Spark Summit
 
Big Data & the Enterprise
Ben Stopford
 
Sessionization with Spark streaming
Ramūnas Urbonas
 
Continuous Application with Structured Streaming 2.0
Anyscale
 
Building a Real-Time Forecasting Engine with Scala and Akka
Lightbend
 
Introduction to Kafka Cruise Control
Jiangjie Qin
 
Data Stream Analytics - Why they are important
Paris Carbone
 
Apache Storm Tutorial
Davide Mazza
 
Voxxed Days Thesaloniki 2016 - Streaming Engines for Big Data
Voxxed Days Thessaloniki
 
Lightbend Fast Data Platform
Lightbend
 
The return of big iron?
Ben Stopford
 
Ad

Similar to Kafka Streams: The Stream Processing Engine of Apache Kafka (20)

PDF
Introducing Kafka's Streams API
confluent
 
PDF
BBL KAPPA Lesfurets.com
Cedric Vidal
 
PPTX
Being Ready for Apache Kafka - Apache: Big Data Europe 2015
Michael Noll
 
PDF
Jug - ecosystem
Florent Ramiere
 
PDF
Deep Learning Streaming Platform with Kafka Streams, TensorFlow, DeepLearning...
Kai Wähner
 
PDF
Chti jug - 2018-06-26
Florent Ramiere
 
PPT
Kafka Explainaton
NguyenChiHoangMinh
 
PDF
Rethinking Stream Processing with Apache Kafka, Kafka Streams and KSQL
Kai Wähner
 
PDF
Apache Kafka - Scalable Message Processing and more!
Guido Schmutz
 
PDF
Applying ML on your Data in Motion with AWS and Confluent | Joseph Morais, Co...
HostedbyConfluent
 
PPTX
Webinar: Data Streaming with Apache Kafka & MongoDB
MongoDB
 
PPTX
Data Streaming with Apache Kafka & MongoDB - EMEA
Andrew Morgan
 
PDF
AWS Re-Invent 2017 Netflix Keystone SPaaS - Monal Daxini - Abd320 2017
Monal Daxini
 
PDF
Introduction to apache kafka, confluent and why they matter
Paolo Castagna
 
PDF
What is Apache Kafka and What is an Event Streaming Platform?
confluent
 
PDF
Apache Kafka and KSQL in Action: Let's Build a Streaming Data Pipeline!
confluent
 
PDF
Event-Driven Model Serving: Stream Processing vs. RPC with Kafka and TensorFl...
confluent
 
PDF
Event-Driven Stream Processing and Model Deployment with Apache Kafka, Kafka ...
Kai Wähner
 
PDF
Apache Kafka vs. Integration Middleware (MQ, ETL, ESB) - Friends, Enemies or ...
confluent
 
PDF
Apache Kafka vs. Traditional Middleware (Kai Waehner, Confluent) Frankfurt 20...
confluent
 
Introducing Kafka's Streams API
confluent
 
BBL KAPPA Lesfurets.com
Cedric Vidal
 
Being Ready for Apache Kafka - Apache: Big Data Europe 2015
Michael Noll
 
Jug - ecosystem
Florent Ramiere
 
Deep Learning Streaming Platform with Kafka Streams, TensorFlow, DeepLearning...
Kai Wähner
 
Chti jug - 2018-06-26
Florent Ramiere
 
Kafka Explainaton
NguyenChiHoangMinh
 
Rethinking Stream Processing with Apache Kafka, Kafka Streams and KSQL
Kai Wähner
 
Apache Kafka - Scalable Message Processing and more!
Guido Schmutz
 
Applying ML on your Data in Motion with AWS and Confluent | Joseph Morais, Co...
HostedbyConfluent
 
Webinar: Data Streaming with Apache Kafka & MongoDB
MongoDB
 
Data Streaming with Apache Kafka & MongoDB - EMEA
Andrew Morgan
 
AWS Re-Invent 2017 Netflix Keystone SPaaS - Monal Daxini - Abd320 2017
Monal Daxini
 
Introduction to apache kafka, confluent and why they matter
Paolo Castagna
 
What is Apache Kafka and What is an Event Streaming Platform?
confluent
 
Apache Kafka and KSQL in Action: Let's Build a Streaming Data Pipeline!
confluent
 
Event-Driven Model Serving: Stream Processing vs. RPC with Kafka and TensorFl...
confluent
 
Event-Driven Stream Processing and Model Deployment with Apache Kafka, Kafka ...
Kai Wähner
 
Apache Kafka vs. Integration Middleware (MQ, ETL, ESB) - Friends, Enemies or ...
confluent
 
Apache Kafka vs. Traditional Middleware (Kai Waehner, Confluent) Frankfurt 20...
confluent
 
Ad

Recently uploaded (20)

DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 

Kafka Streams: The Stream Processing Engine of Apache Kafka

  • 1. 1Confidential Kafka Streams: The New Smart Kid On The Block The Stream Processing Engine of Apache Kafka Eno Thereska [email protected] enotheres ka Big Data London 2016 Slide contributions: Michael Noll
  • 2. 2Confidential Apache Kafka and Kafka Streams API
  • 3. 3Confidential What is Kafka Streams: Unix analogy $ cat < in.txt | grep “apache” | tr a-z A-Z > out.txt Kafka Core Kafka Connect Kafka Streams
  • 4. 4Confidential When to use Kafka Streams • Mainstream Application Development • When running a cluster would suck • Microservices • Fast Data apps for small and big data • Large-scale continuous queries and transformations • Event-triggered processes • Reactive applications • The “T” in ETL • <and more> • Use case examples • Real-time monitoring and intelligence • Customer 360-degree view • Fraud detection • Location-based marketing • Fleet management • <and more>
  • 5. 5Confidential Some use cases in the wild & external articles • Applying Kafka Streams for internal message delivery pipeline at LINE Corp. • http://developers.linecorp.com/blog/?p=3960 • Kafka Streams in production at LINE, a social platform based in Japan with 220+ million users • Microservices and reactive applications • https://speakerdeck.com/bobbycalderwood/commander-decoupled-immutable-rest-apis-with-kafka-streams • User behavior analysis • https://timothyrenner.github.io/engineering/2016/08/11/kafka-streams-not-looking-at-facebook.html • Containerized Kafka Streams applications in Scala • https://www.madewithtea.com/processing-tweets-with-kafka-streams.html • Geo-spatial data analysis • http://www.infolace.com/blog/2016/07/14/simple-spatial-windowing-with-kafka-streams/ • Language classification with machine learning • https://dzone.com/articles/machine-learning-with-kafka-streams
  • 6. 6Confidential Architecture comparison: use case example Real-time dashboard for security monitoring “Which of my data centers are under attack?”
  • 7. 7Confidential Architecture comparison: use case example Other App Dashboard Frontend App Other App 1 Capture business events in Kafka 2 Must process events with separate cluster (e.g. Spark) 4 Other apps access latest results by querying these DBs 3 Must share latest results through separate systems (e.g. MySQL) Before: Undue complexity, heavy footprint, many technologies, split ownership with conflicting priorities Your “Job” Other App Dashboard Frontend App Other App 1 Capture business events in Kafka 2 Process events with standard Java apps that use Kafka Streams 3 Now other apps can directly query the latest results With Kafka Streams: simplified, app-centric architecture, puts app owners in control Kafka Streams Your App Conflicting priorities: infrastructure teams vs. product teams Complexity: a lot of moving pieces that are also complex individually Is all this a part of the solution or part of your problem?
  • 8. 8Confidential How do I install Kafka Streams? • There is and there should be no “installation” – Build Apps, Not Clusters! • It’s a library. Add it to your app like any other library. <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-streams</artifactId> <version>0.10.0.1</version> </dependency>
  • 9. 9Confidential How do I package and deploy my apps? How do I …? • Whatever works for you. Stick to what you/your company think is the best way. • Kafka Streams integrates well with what you already have. • Why? Because an app that uses Kafka Streams is…a normal Java app.
  • 11. 11Confidential • API option 1: Kafka Streams DSL (declarative) KStream<Integer, Integer> input = builder.stream("numbers-topic"); // Stateless computation KStream<Integer, Integer> doubled = input.mapValues(v -> v * 2); // Stateful computation KTable<Integer, Integer> sumOfOdds = input .filter((k,v) -> v % 2 != 0) .selectKey((k, v) -> 1) .groupByKey() .reduce((v1, v2) -> v1 + v2, "sum-of-odds"); The preferred API for most use cases. The DSL particularly appeals to users: • When familiar with Spark, Flink • When fans of Scala or functional programming
  • 12. 12Confidential • API option 2: Processor API (imperative) class PrintToConsoleProcessor implements Processor<K, V> { @Override public void init(ProcessorContext context) {} @Override void process(K key, V value) { System.out.println("Received record with " + "key=" + key + " and value=" + value); } @Override void punctuate(long timestamp) {} @Override void close() {} } Full flexibility but more manual work The Processor API appeals to users: • When familiar with Storm, Samza • Still, check out the DSL! • When requiring functionality that is not yet available in the DSL
  • 13. 13Confidential ”My WordCount is better than your WordCount” (?) Kafka Spark These isolated code snippets are nice (and actually quite similar) but they are not very meaningful. In practice, we also need to read data from somewhere, write data back to somewhere, etc.– but we can see none of this here.
  • 15. 15Confidential Compared to: WordCount in Spark 2.0 1 2 3 Runtime model leaks into processing logic (here: interfacing from Spark with Kafka)
  • 16. 16Confidential Compared to: WordCount in Spark 2.0 4 5 Runtime model leaks into processing logic (driver vs. executors)
  • 24. 24Confidential Motivating example: continuously compute current users per geo-region 4 7 5 3 2 8 Real-time dashboard “How many users younger than 30y, per region?” alice Asia, 25y, … bob Europe, 46y, … … … user-locations (mobile team) user-prefs (web team)
  • 25. 25Confidential Motivating example: continuously compute current users per geo-region 4 7 5 3 2 8 Real-time dashboard “How many users younger than 30y, per region?” alice Europe user-locations alice Asia, 25y, … bob Europe, 46y, … … … user-locations (mobile team) user-prefs (web team)
  • 26. 26Confidential Motivating example: continuously compute current users per geo-region 4 7 5 3 2 8 Real-time dashboard “How many users younger than 30y, per region?” alice Europe user-locations user-locations (mobile team) user-prefs (web team) alice Asia, 25y, … bob Europe, 46y, … … … alice Europe, 25y, … bob Europe, 46y, … … …
  • 27. 27Confidential Motivating example: continuously compute current users per geo-region 4 7 5 3 2 8 4 7 6 3 2 7 Alice Real-time dashboard “How many users younger than 30y, per region?” alice Europe user-locations alice Asia, 25y, … bob Europe, 46y, … … … alice Europe, 25y, … bob Europe, 46y, … … … -1 +1 user-locations (mobile team) user-prefs (web team)
  • 28. 28Confidential Same data, but different use cases require different interpretations alice San Francisco alice New York City alice Rio de Janeiro alice Sydney alice Beijing alice Paris alice Berlin
  • 29. 29Confidential Same data, but different use cases require different interpretations alice San Francisco alice New York City alice Rio de Janeiro alice Sydney alice Beijing alice Paris alice Berlin Use case 1: Frequent traveler status? Use case 2: Current location?
  • 30. 30Confidential Same data, but different use cases require different interpretations “Alice has been to SFO, NYC, Rio, Sydney, Beijing, Paris, and finally Berlin.” “Alice is in SFO, NYC, Rio, Sydney, Beijing, Paris, Berlin right now.” ⚑ ⚑ ⚑⚑ ⚑ ⚑ ⚑ ⚑ ⚑ ⚑⚑ ⚑ ⚑ ⚑ Use case 1: Frequent traveler status? Use case 2: Current location?
  • 31. 31Confidential Streams meet Tables record stream When you need… so that the topic is interpreted as a All the values of a key KStream then you’d read the Kafka topic into a Example All the places Alice has ever been to with messages interpreted as INSERT (append)
  • 32. 32Confidential Streams meet Tables record stream changelog stream When you need… so that the topic is interpreted as a All the values of a key Latest value of a key KStream KTable then you’d read the Kafka topic into a Example All the places Alice has ever been to Where Alice is right now with messages interpreted as INSERT (append) UPDATE (overwrite existing)
  • 33. 33Confidential Motivating example: continuously compute current users per geo-region KTable<UserId, Location> userLocations = builder.table(“user-locations-topic”); KTable<UserId, Prefs> userPrefs = builder.table(“user-preferences-topic”);
  • 34. 34Confidential Motivating example: continuously compute current users per geo-region alice Europe user-locations alice Asia, 25y, … bob Europe, 46y, … … … alice Europe, 25y, … bob Europe, 46y, … … … KTable<UserId, Location> userLocations = builder.table(“user-locations-topic”); KTable<UserId, Prefs> userPrefs = builder.table(“user-preferences-topic”); // Merge into detailed user profiles (continuously updated) KTable<UserId, UserProfile> userProfiles = userLocations.join(userPrefs, (loc, prefs) -> new UserProfile(loc, prefs)); KTable userProfilesKTable userProfiles
  • 35. 35Confidential Motivating example: continuously compute current users per geo-region KTable<UserId, Location> userLocations = builder.table(“user-locations-topic”); KTable<UserId, Prefs> userPrefs = builder.table(“user-preferences-topic”); // Merge into detailed user profiles (continuously updated) KTable<UserId, UserProfile> userProfiles = userLocations.join(userPrefs, (loc, prefs) -> new UserProfile(loc, prefs)); // Compute per-region statistics (continuously updated) KTable<UserId, Long> usersPerRegion = userProfiles .filter((userId, profile) -> profile.age < 30) .groupBy((userId, profile) -> profile.location) .count(); alice Europe user-locations Africa 3 … … Asia 8 Europe 5 Africa 3 … … Asia 7 Europe 6 KTable usersPerRegion KTable usersPerRegion
  • 36. 36Confidential Motivating example: continuously compute current users per geo-region 4 7 5 3 2 8 4 7 6 3 2 7 Alice Real-time dashboard “How many users younger than 30y, per region?” alice Europe user-locations alice Asia, 25y, … bob Europe, 46y, … … … alice Europe, 25y, … bob Europe, 46y, … … … -1 +1 user-locations (mobile team) user-prefs (web team)
  • 37. 37Confidential Streams meet Tables – in the Kafka Streams DSL
  • 39. 39Confidential Key features in 0.10 • Native, 100%-compatible Kafka integration
  • 40. 40Confidential Native, 100% compatible Kafka integration Read from Kafka Write to Kafka
  • 41. 41Confidential Key features in 0.10 • Native, 100%-compatible Kafka integration • Secure stream processing using Kafka’s security features • Elastic and highly scalable • Fault-tolerant
  • 46. 46Confidential Key features in 0.10 • Native, 100%-compatible Kafka integration • Secure stream processing using Kafka’s security features • Elastic and highly scalable • Fault-tolerant • Stateful and stateless computations
  • 47. 47Confidential Stateful computations • Stateful computations like aggregations or joins require state • We already showed a join example in the previous slides. • Windowing a stream is stateful, too, but let’s ignore this for now. • Example: count() will cause the creation of a state store to keep track of counts • State stores in Kafka Streams • … are per stream task for isolation (think: share-nothing) • … are local for best performance • … are replicated to Kafka for elasticity and for fault-tolerance • Pluggable storage engines • Default: RocksDB (key-value store) to allow for local state that is larger than available RAM • Further built-in options available: in-memory store • You can also use your own, custom storage engine
  • 48. 48Confidential State management with built-in fault-tolerance State stores (This is a bit simplified.)
  • 49. 49Confidential State management with built-in fault-tolerance State stores (This is a bit simplified.) charlie 3 bob 1 alice 1 alice 2
  • 50. 50Confidential State management with built-in fault-tolerance State stores (This is a bit simplified.)
  • 51. 51Confidential State management with built-in fault-tolerance State stores (This is a bit simplified.) alice 1 alice 2
  • 52. 52Confidential Key features in 0.10 • Native, 100%-compatible Kafka integration • Secure stream processing using Kafka’s security features • Elastic and highly scalable • Fault-tolerant • Stateful and stateless computations • Interactive queries
  • 53. 53Confidential Interactive Queries Kafka Streams App App App App 1 Capture business events in Kafka 2 Process the events with Kafka Streams 4 Other apps query external systems for latest results ! Must use external systems to share latest results App App App 1 Capture business events in Kafka 2 Process the events with Kafka Streams 3 Now other apps can directly query the latest results Before (0.10.0) After (0.10.1): simplified, more app-centric architecture Kafka Streams App
  • 54. 54Confidential Key features in 0.10 • Native, 100%-compatible Kafka integration • Secure stream processing using Kafka’s security features • Elastic and highly scalable • Fault-tolerant • Stateful and stateless computations • Interactive queries • Time model • Windowing • Supports late-arriving and out-of-order data • Millisecond processing latency, no micro-batching • At-least-once processing guarantees (exactly-once is in the works as we speak)
  • 56. 56Confidential Where to go from here • Kafka Streams is available in Confluent Platform 3.0 and in Apache Kafka 0.10 • http://www.confluent.io/download • Kafka Streams demos: https://github.com/confluentinc/examples • Java 7, Java 8+ with lambdas, and Scala • WordCount, Interactive Queries, Joins, Security, Windowing, Avro integration, … • Confluent documentation: http://docs.confluent.io/current/streams/ • Quickstart, Concepts, Architecture, Developer Guide, FAQ • Recorded talks • Introduction to Kafka Streams: http://www.youtube.com/watch?v=o7zSLNiTZbA • Application Development and Data in the Emerging World of Stream Processing (higher level talk): https://www.youtube.com/watch?v=JQnNHO5506w

Editor's Notes

  • #3: <Ask audience if they use Kafka> Kafka started as a high throughput messaging layer or pub/sub It has evolved to be a streaming platform through the Kafka Streams library. Today it’s about Kafka Streams. Kafka Connect brings data into Kafka, we won’t spend much time in this talk on that.
  • #8: Depending on your use case, you may even collapse the Streams app and the Dashboard Frontend App into a single app! Simplify your architecture: for many use cases, you no longer need a separate processing cluster and/or external databases. Empower and decouple your organization: Before, the diversity of the required technology stack typically meant that different parts of the organization were responsible for different parts of a data pipeline (e.g. the infrastructure team that provides Spark as a shared, horizontal service to the whole company vs. the product teams in the LOB who are actually driving the business and who are running on top of these shared services). With Confluent Platform and Kafka, many use cases can be implemented in a much more simplified, light-weight fashion – thus taking stream processing out of the Big Data niche into mainstream application develoment. Here, you implement, test, deploy, run, and monitor stream processing applications just like any other applications within your company. This decoupling of teams and ownerships enables faster, more agile development.
  • #10: FYI: Mesosphere is a Confluent partner. You can run the Confluent Platform on Mesosphere DC/OS.
  • #11: Alright, let’s still show the APIs before we continue with the more interesting bits and pieces.
  • #14: The purpose of the following comparison is to show concrete examples (rather than high-level talk) to point out some general differences between Kafka Streams and other, related stream processing technologies. Here, we happen to compare Kafka Streams with Spark. But we could have also compared with Storm, Samza, Akka Streams, etc.
  • #20: Kafka Streams has a very similar data model as Kafka Core. (We won’t need to go into further details here.)
  • #21: The processing logic of your application is defined through a processor topology, which consists of nodes (stream processors = stream processing steps) and edges (streams) that connect the nodes. If you use the DSL, all of this is hidden from you. If you use the Processor API, you can (and must) define the topology manually.
  • #22: Kafka partitions data for storing and transporting it. Kafka Streams partitions data for processing it. In both cases, this partitioning enables data locality, elasticity, scalability, high performance, and fault-tolerance. That’s all we want to mention at this point because we want to rather talk about something more interesting and more important: the stream-table duality.
  • #25: Imagine that one of your products is a real-time dashboard that shows the current number of users in each region of the world. This dashboard is powered by a stream processing application that (1) builds detailed user profiles by joining data from a variety of Kafka topics and (2) computes statistics on these user profiles. The Kafka topics could include, for example, a user-preferences topic based on direct user input (e.g. birthday/age) plus a user-location topic that receives automatic geo-location updates from a user’s mobile device (”In Paris right now!”). Also, it is pretty likely that, in practice, the various information sources (topics) are managed by different teams: the user-locations topic could be managed by the mobile app team, and the user-prefs topic by the frontend team. Now what you want to happen is that every time there is a new piece of information arriving in the upstream Kafka topics (say, a geo-location update for user Alice), then this information should automatically and quickly propagate throughout the data pipeline to update the dashboard. As we will see, implementing such a stream processing application with Kafka Streams is easy and straight-forward.
  • #26: Imagine that one of your products is a real-time dashboard that shows the current number of users in each region of the world. This dashboard is powered by a stream processing application that (1) builds detailed user profiles by joining data from a variety of Kafka topics and (2) computes statistics on these user profiles. The Kafka topics could include, for example, a user-preferences topic based on direct user input (e.g. birthday/age) plus a user-location topic that receives automatic geo-location updates from a user’s mobile device (”In Paris right now!”). Now what you want to happen is that every time there is a new piece of information arriving in the upstream Kafka topics (say, a geo-location update for user Alice), then this information should automatically and quickly propagate throughout the data pipeline to update the dashboard. As we will see, implementing such a stream processing application with Kafka Streams is easy and straight-forward.
  • #27: Imagine that one of your products is a real-time dashboard that shows the current number of users in each region of the world. This dashboard is powered by a stream processing application that (1) builds detailed user profiles by joining data from a variety of Kafka topics and (2) computes statistics on these user profiles. The Kafka topics could include, for example, a user-preferences topic based on direct user input (e.g. birthday/age) plus a user-location topic that receives automatic geo-location updates from a user’s mobile device (”In Paris right now!”). Now what you want to happen is that every time there is a new piece of information arriving in the upstream Kafka topics (say, a geo-location update for user Alice), then this information should automatically and quickly propagate throughout the data pipeline to update the dashboard. As we will see, implementing such a stream processing application with Kafka Streams is easy and straight-forward.
  • #28: Imagine that one of your products is a real-time dashboard that shows the current number of users in each region of the world. This dashboard is powered by a stream processing application that (1) builds detailed user profiles by joining data from a variety of Kafka topics and (2) computes statistics on these user profiles. The Kafka topics could include, for example, a user-preferences topic based on direct user input (e.g. birthday/age) plus a user-location topic that receives automatic geo-location updates from a user’s mobile device (”In Paris right now!”). Now what you want to happen is that every time there is a new piece of information arriving in the upstream Kafka topics (say, a geo-location update for user Alice), then this information should automatically and quickly propagate throughout the data pipeline to update the dashboard. As we will see, implementing such a stream processing application with Kafka Streams is easy and straight-forward.
  • #29: Ok, we saw the motivating example. Let’s take a step back and work back again towards this motivating example.
  • #32: Alright, this might seem a bit repetitive but the stream-table duality is an important concept, so looking at the same concept from different angles helps to fully understand it.
  • #33: KStream = immutable log KTable ~ mutable materialized view
  • #34: The point here is NOT this code or how it works in detail. The actual point is: Note how we exclusively use KTables here! That is, not even a single KStream is used or needed (and a KStream equivalent is the only type of abstraction provided by other stream processing technologies). This use case makes it pretty obvious why the concept of a KTable is so powerful, and why the lack of such a concept is a significant drawback for stream processing in practice. And why do we use only KTables here? Because we are only interested in 1. the latest user location, 2. the latest user preferences, and so on.
  • #35: The point here is NOT this code or how it works in detail. The actual point is: Note how we exclusively use KTables here! That is, not even a single KStream is used or needed (and a KStream equivalent is the only type of abstraction provided by other stream processing technologies). This use case makes it pretty obvious why the concept of a KTable is so powerful, and why the lack of such a concept is a significant drawback for stream processing in practice. And why do we use only KTables here? Because we are only interested in 1. the latest user location, 2. the latest user preferences, and so on.
  • #36: The point here is NOT this code or how it works in detail. The actual point is: Note how we exclusively use KTables here! That is, not even a single KStream is used or needed (and a KStream equivalent is the only type of abstraction provided by other stream processing technologies). This use case makes it pretty obvious why the concept of a KTable is so powerful, and why the lack of such a concept is a significant drawback for stream processing in practice. And why do we use only KTables here? Because we are only interested in 1. the latest user location, 2. the latest user preferences, and so on.
  • #37: KTables everywhere! Plus: Interactive Queries!
  • #50: Remember the stream-table duality we talked about earlier? A state store is also a kind of table, so we can and do log any changes to the various state stores into Kafka (“changelog streams”).
  • #51: Now if one of the application instances is taken down (e.g. maintenance, reducing the capacity of the app to save operating costs) / fails (e.g. machine crash) …
  • #52: … then we can reconstruct the app instance’s local state on the remaining live instances of the application by replaying the state store’s changelog stream. What really happens here is that Kafka Streams will migrate any stream task(s) from the terminated instance to the remaining live instances, and each stream task has its own state store(s), assigned partitions, and so on. Note that, in practice, more than just one app instances will typically take over the work – i.e. stream tasks – from the terminated instance. The diagram above is, as highlighted, a simplification.