SlideShare a Scribd company logo
Data Stream Processing with
Apache Flink
Fabian Hueske
@fhueske
Apache Flink Meetup Madrid, 25.02.2016
What is Apache Flink?
Apache Flink is an open source platform for
scalable stream and batch processing.
2
• The core of Flink is a distributed
streaming dataflow engine.
• Executes dataflows in
parallel on clusters
• Provides a reliable backend
for various workloads
• DataStream and DataSet
programming abstractions are
the foundation for user programs
and higher layers
What is Apache Flink?
3
Streaming topologies
Long batch pipelines
Machine Learning at scale
A stream processor with many faces
Graph Analysis
 resource utilization
 iterative algorithms
 Mutable state
 low-latency processing
History & Community of Flink
From incubation until now
4
5
Apr ‘14 Jun ‘15Dec ‘14
0.70.60.5 0.9 0.10
Nov ‘15
Top level
0.8
Mar ‘15
1.0!
Growing and Vibrant Community
Flink is one of the largest and most active Apache big data projects:
• more than 150 contributors
• more than 600 forks
• more than 1000 Github stars (since yesterday)
6
Flink Meetups around the Globe
7
Flink Meetups around the Globe
8
✔ 
Organizations at Flink Forward
9
The streaming era
Coming soon…
10
What is Stream Processing?
11
 Today, most data is continuously produced
• user activity logs, web logs, sensors, database
transactions, …
 The common approach to analyze such data so far
• Record data stream to stable storage (DBMS, HDFS, …)
• Periodically analyze data with batch processing engine
(DBMS, MapReduce, ...)
 Streaming processing engines analyze data
while it arrives
Why do Stream Processing?
 Decreases the overall latency to obtain results
• No need to persist data in stable storage
• No periodic batch analysis jobs
 Simplifies the data infrastructure
• Fewer moving parts to be maintained and coordinated
 Makes time dimension of data explicit
• Each event has a timestamp
• Data can be processed based on timestamps
12
What are the Requirements?
 Low latency
• Results in millisecond
 High throughput
• Millions of events per second
 Exactly-once consistency
• Correct results in case of failures
 Out-of-order events
• Process events based on their associated time
 Intuitive APIs
13
OS Stream Processors so far
 Either low latency or high throughput
 Exactly-once guarantees only with high latency
 Lacking time semantics
• Processing by wall clock time only
• Events are processed in arrival order, not in the order they were
created
 Shortcomings lead to complicated system designs
• Lambda architecture
14
Stream Processing with Flink
15
Stream Processing with Flink
 Low latency
• Pipelined processing engine
 High throughput
• Controllable checkpointing overhead
 Exactly-once guarantees
• Distributed snapshots
 Support for out-of-order streams
• Processing semantics based on event-time
 Programmability
• APIs similar to those known from the batch world
16
Flink in Streaming Architectures
17
Flink
Flink Flink
Elasticsearch, Hbase,
Cassandra, …
HDFS
Kafka
Analytics on static data
Data ingestion
and ETL
Analytics on data
in motion
The DataStream API
Concise and easy-to-grasp code
18
The DataStream API
19
case class Event(location: Location, numVehicles: Long)
val stream: DataStream[Event] = …;
stream
.filter { evt => isIntersection(evt.location) }
The DataStream API
20
case class Event(location: Location, numVehicles: Long)
val stream: DataStream[Event] = …;
stream
.filter { evt => isIntersection(evt.location) }
.keyBy("location")
.timeWindow(Time.minutes(15), Time.minutes(5))
.sum("numVehicles")
The DataStream API
21
case class Event(location: Location, numVehicles: Long)
val stream: DataStream[Event] = …;
stream
.filter { evt => isIntersection(evt.location) }
.keyBy("location")
.timeWindow(Time.minutes(15), Time.minutes(5))
.sum("numVehicles")
.keyBy("location")
.mapWithState { (evt, state: Option[Model]) => {
val model = state.orElse(new Model())
(model.classify(evt), Some(model.update(evt)))
}}
Event-time processing
Consistent and sound results
22
Event-time Processing
 Most data streams consist of events
• log entries, sensor data, user actions, …
• Events have an associated timestamp
 Many analysis tasks are based on time
• “Average temperature every minute”
• “Count of processed parcels per hour”
• ...
 Events often arrive out-of-order at processor
• Distributed sources, network delays, non-synced clocks, …
 Stream processor must respect time of events for
consistent and sound results
• Most stream processors use wall clock time
23
Event Processing
24
Events occur on devices
Queue / Log
Events analyzed in a
stream processor
Stream Analysis
Events stored in a log
Event Processing
25
Event Processing
26
Event Processing
27
Event Processing
28
Out of order!!!
First burst of events
Second burst of events
Event Processing
29
Event time windows
Arrival time windows
Instant event-at-a-time
Flink supports out-of-order streams (event time) windows,
arrival time windows (and mixtures) plus low latency processing.
First burst of events
Second burst of events
Event-time Processing
 Event-time processing decouples job semantics
from processing speed
 Analyze events from static data store and
online stream using the same program
 Semantically sound and consistent results
 Details:
http://data-artisans.com/how-apache-flink-enables-new-
streaming-applications-part-1
30
Operational Features
Running Flink 24*7*52
31
Monitoring & Dashboard
 Many metrics exposed via REST interface
 Web dashboard
• Submit, stop, and cancel jobs
• Inspect running and completed jobs
• Analyze performance
• Check exceptions
• Inspect configuration
• …
32
Highly-available Cluster Setup
 Stream applications run for weeks, months, …
• Application must never fail!
• No single-point-of-failure component allowed
 Flink supports highly-available cluster setups
• Master failures are resolved using Apache Zookeeper
• Worker failures are resolved by master
 Stand-alone cluster setup
• Requires (manually started) stand-by masters and workers
 YARN cluster setup
• Masters and workers are automatically restarted
33
 A save point is a consistent snapshot of a job
• Includes source offsets and operator state
• Stop job
• Restart job from save point
 What can I use it for?
• Fix or update your job
• A/B testing
• Update Flink
• Migrate cluster
• …
 Details:
http://data-artisans.com/how-apache-flink-enables-new-
streaming-applications
Save Points
34
Performance: Summary
35
Continuous
streaming
Latency-bound
buffering
Distributed
Snapshots
High Throughput &
Low Latency
With configurable throughput/latency tradeoff
Details:
http://data-artisans.com/high-throughput-low-latency-
and-exactly-once-stream-processing-with-apache-flink
Integration (picture not complete)
36
POSIX Java/Scala
Collections
POSIX
Post v1.0 Roadmap
What’s coming next?
37
Stream SQL and Table API
 Structured queries over data streams
• LINQ-style Table API
• Stream SQL
 Based on Apache Calcite
• SQL Parser and optimizer
 “Compute every hour the number of orders and
number ordered units for each product.”
38
SELECT STREAM
productId,
TUMBLE_END(rowtime, INTERVAL '1' HOUR) AS rowtime,
COUNT(*) AS cnt,
SUM(units) AS units
FROM
Orders
GROUP BY
TUMBLE(rowtime, INTERVAL '1' HOUR),
productId;
Complex Event Processing
 Identify complex patterns in event streams
• Correlations & sequences
 Many applications
• Network intrusion detection via access patterns
• Item tracking (parcels, devices, …)
• …
 CEP depends on low latency processing
• Most CEP system are not distributed
 CEP in Flink
• Easy-to-use API to define CEP patterns
• Integration with Table API for structured analytics
• Low-latency and high-throughput engine
39
Dynamic Job Parallelism
 Adjusting parallelism of tasks without (significantly)
interrupting the program
 Initial version based on save points
• Trigger save point
• Stop job
• Restart job with adjusted parallelism
 Later change parallelism while job is running
 Vision is automatic adaption based on throughput
40
Wrap up!
 Flink is a kick-ass stream processor…
• Low latency & high throughput
• Exactly-once consistency
• Event-time processing
• Support for out-of-order streams
• Intuitive API
 with lots of features in the pipeline…
 and a reliable batch processor as well!
41
I ♥ Squirrels, do you?
 More Information at
• http://flink.apache.org/
 Free Flink training at
• http://dataartisans.github.io/flink-training
 Sign up for user/dev mailing list
 Get involved and contribute
 Follow @ApacheFlink on Twitter
42
43
Ad

Recommended

PPTX
Apache Spark Architecture
Alexey Grishchenko
 
PDF
Fundamentals of Apache Kafka
Chhavi Parasher
 
PPTX
Apache Flink @ NYC Flink Meetup
Stephan Ewen
 
PPTX
kafka
Amikam Snir
 
PPTX
HBase and HDFS: Understanding FileSystem Usage in HBase
enissoz
 
ODP
Stream processing using Kafka
Knoldus Inc.
 
PDF
Improving SparkSQL Performance by 30%: How We Optimize Parquet Pushdown and P...
Databricks
 
PDF
Tech Talk: RocksDB Slides by Dhruba Borthakur & Haobo Xu of Facebook
The Hive
 
PDF
When NOT to use Apache Kafka?
Kai Wähner
 
PPTX
Apache Flink and what it is used for
Aljoscha Krettek
 
PPTX
Introduction to Apache Kafka
AIMDek Technologies
 
PDF
Introduction to Apache Beam
Knoldus Inc.
 
PPTX
Spark architecture
GauravBiswas9
 
PDF
Kafka 101 and Developer Best Practices
confluent
 
PDF
Introduction to Apache Spark
Anastasios Skarlatidis
 
PDF
Apache Kafka Architecture & Fundamentals Explained
confluent
 
PPTX
Kafka Tutorial - Introduction to Apache Kafka (Part 1)
Jean-Paul Azar
 
PDF
Enabling Vectorized Engine in Apache Spark
Kazuaki Ishizaki
 
PPTX
Spark Shuffle Deep Dive (Explained In Depth) - How Shuffle Works in Spark
Bo Yang
 
PDF
Stream Processing with Flink and Stream Sharing
confluent
 
PPT
Step-by-Step Introduction to Apache Flink
Slim Baltagi
 
PDF
Apache Flink internals
Kostas Tzoumas
 
PPTX
Apache flink
Ahmed Nader
 
PDF
Introduction to Apache Flink
datamantra
 
PDF
Hello, kafka! (an introduction to apache kafka)
Timothy Spann
 
PDF
Real-Life Use Cases & Architectures for Event Streaming with Apache Kafka
Kai Wähner
 
PPTX
Kafka 101
Aparna Pillai
 
PDF
Spark (Structured) Streaming vs. Kafka Streams
Guido Schmutz
 
PPTX
Flexible and Real-Time Stream Processing with Apache Flink
DataWorks Summit
 
PDF
Stream Processing with Apache Flink
C4Media
 

More Related Content

What's hot (20)

PDF
When NOT to use Apache Kafka?
Kai Wähner
 
PPTX
Apache Flink and what it is used for
Aljoscha Krettek
 
PPTX
Introduction to Apache Kafka
AIMDek Technologies
 
PDF
Introduction to Apache Beam
Knoldus Inc.
 
PPTX
Spark architecture
GauravBiswas9
 
PDF
Kafka 101 and Developer Best Practices
confluent
 
PDF
Introduction to Apache Spark
Anastasios Skarlatidis
 
PDF
Apache Kafka Architecture & Fundamentals Explained
confluent
 
PPTX
Kafka Tutorial - Introduction to Apache Kafka (Part 1)
Jean-Paul Azar
 
PDF
Enabling Vectorized Engine in Apache Spark
Kazuaki Ishizaki
 
PPTX
Spark Shuffle Deep Dive (Explained In Depth) - How Shuffle Works in Spark
Bo Yang
 
PDF
Stream Processing with Flink and Stream Sharing
confluent
 
PPT
Step-by-Step Introduction to Apache Flink
Slim Baltagi
 
PDF
Apache Flink internals
Kostas Tzoumas
 
PPTX
Apache flink
Ahmed Nader
 
PDF
Introduction to Apache Flink
datamantra
 
PDF
Hello, kafka! (an introduction to apache kafka)
Timothy Spann
 
PDF
Real-Life Use Cases & Architectures for Event Streaming with Apache Kafka
Kai Wähner
 
PPTX
Kafka 101
Aparna Pillai
 
PDF
Spark (Structured) Streaming vs. Kafka Streams
Guido Schmutz
 
When NOT to use Apache Kafka?
Kai Wähner
 
Apache Flink and what it is used for
Aljoscha Krettek
 
Introduction to Apache Kafka
AIMDek Technologies
 
Introduction to Apache Beam
Knoldus Inc.
 
Spark architecture
GauravBiswas9
 
Kafka 101 and Developer Best Practices
confluent
 
Introduction to Apache Spark
Anastasios Skarlatidis
 
Apache Kafka Architecture & Fundamentals Explained
confluent
 
Kafka Tutorial - Introduction to Apache Kafka (Part 1)
Jean-Paul Azar
 
Enabling Vectorized Engine in Apache Spark
Kazuaki Ishizaki
 
Spark Shuffle Deep Dive (Explained In Depth) - How Shuffle Works in Spark
Bo Yang
 
Stream Processing with Flink and Stream Sharing
confluent
 
Step-by-Step Introduction to Apache Flink
Slim Baltagi
 
Apache Flink internals
Kostas Tzoumas
 
Apache flink
Ahmed Nader
 
Introduction to Apache Flink
datamantra
 
Hello, kafka! (an introduction to apache kafka)
Timothy Spann
 
Real-Life Use Cases & Architectures for Event Streaming with Apache Kafka
Kai Wähner
 
Kafka 101
Aparna Pillai
 
Spark (Structured) Streaming vs. Kafka Streams
Guido Schmutz
 

Similar to Data Stream Processing with Apache Flink (20)

PPTX
Flexible and Real-Time Stream Processing with Apache Flink
DataWorks Summit
 
PDF
Stream Processing with Apache Flink
C4Media
 
PPTX
GOTO Night Amsterdam - Stream processing with Apache Flink
Robert Metzger
 
PPTX
Flink Streaming @BudapestData
Gyula Fóra
 
PDF
Apache Flink @ Tel Aviv / Herzliya Meetup
Robert Metzger
 
PDF
Stream Processing with Apache Flink (Flink.tw Meetup 2016/07/19)
Apache Flink Taiwan User Group
 
PDF
Unified Stream and Batch Processing with Apache Flink
DataWorks Summit/Hadoop Summit
 
PPTX
QCon London - Stream Processing with Apache Flink
Robert Metzger
 
PPTX
Architecture of Flink's Streaming Runtime @ ApacheCon EU 2015
Robert Metzger
 
PPTX
ApacheCon: Apache Flink - Fast and Reliable Large-Scale Data Processing
Fabian Hueske
 
PDF
Santander Stream Processing with Apache Flink
confluent
 
PPTX
Apache Flink: Past, Present and Future
Gyula Fóra
 
PDF
Apache flink
pranay kumar
 
PPTX
Flink System Overview
Timo Walther
 
PPTX
Flink history, roadmap and vision
Stephan Ewen
 
PPTX
Flink Streaming Hadoop Summit San Jose
Kostas Tzoumas
 
PPTX
Chicago Flink Meetup: Flink's streaming architecture
Robert Metzger
 
PDF
Modern Stream Processing With Apache Flink @ GOTO Berlin 2017
Till Rohrmann
 
PPTX
Why apache Flink is the 4G of Big Data Analytics Frameworks
Slim Baltagi
 
PPTX
Apache Flink Meetup Munich (November 2015): Flink Overview, Architecture, Int...
Robert Metzger
 
Flexible and Real-Time Stream Processing with Apache Flink
DataWorks Summit
 
Stream Processing with Apache Flink
C4Media
 
GOTO Night Amsterdam - Stream processing with Apache Flink
Robert Metzger
 
Flink Streaming @BudapestData
Gyula Fóra
 
Apache Flink @ Tel Aviv / Herzliya Meetup
Robert Metzger
 
Stream Processing with Apache Flink (Flink.tw Meetup 2016/07/19)
Apache Flink Taiwan User Group
 
Unified Stream and Batch Processing with Apache Flink
DataWorks Summit/Hadoop Summit
 
QCon London - Stream Processing with Apache Flink
Robert Metzger
 
Architecture of Flink's Streaming Runtime @ ApacheCon EU 2015
Robert Metzger
 
ApacheCon: Apache Flink - Fast and Reliable Large-Scale Data Processing
Fabian Hueske
 
Santander Stream Processing with Apache Flink
confluent
 
Apache Flink: Past, Present and Future
Gyula Fóra
 
Apache flink
pranay kumar
 
Flink System Overview
Timo Walther
 
Flink history, roadmap and vision
Stephan Ewen
 
Flink Streaming Hadoop Summit San Jose
Kostas Tzoumas
 
Chicago Flink Meetup: Flink's streaming architecture
Robert Metzger
 
Modern Stream Processing With Apache Flink @ GOTO Berlin 2017
Till Rohrmann
 
Why apache Flink is the 4G of Big Data Analytics Frameworks
Slim Baltagi
 
Apache Flink Meetup Munich (November 2015): Flink Overview, Architecture, Int...
Robert Metzger
 
Ad

More from Fabian Hueske (12)

PPTX
Flink SQL in Action
Fabian Hueske
 
PPTX
Flink's Journey from Academia to the ASF
Fabian Hueske
 
PPTX
Why and how to leverage the power and simplicity of SQL on Apache Flink
Fabian Hueske
 
PPTX
Streaming SQL to unify batch and stream processing: Theory and practice with ...
Fabian Hueske
 
PPTX
Stream Analytics with SQL on Apache Flink
Fabian Hueske
 
PPTX
Stream Analytics with SQL on Apache Flink
Fabian Hueske
 
PPTX
Taking a look under the hood of Apache Flink's relational APIs.
Fabian Hueske
 
PPTX
Juggling with Bits and Bytes - How Apache Flink operates on binary data
Fabian Hueske
 
PPTX
Apache Flink - Hadoop MapReduce Compatibility
Fabian Hueske
 
PPTX
Apache Flink - A Sneek Preview on Language Integrated Queries
Fabian Hueske
 
PPTX
Apache Flink - Akka for the Win!
Fabian Hueske
 
PPTX
Apache Flink - Community Update January 2015
Fabian Hueske
 
Flink SQL in Action
Fabian Hueske
 
Flink's Journey from Academia to the ASF
Fabian Hueske
 
Why and how to leverage the power and simplicity of SQL on Apache Flink
Fabian Hueske
 
Streaming SQL to unify batch and stream processing: Theory and practice with ...
Fabian Hueske
 
Stream Analytics with SQL on Apache Flink
Fabian Hueske
 
Stream Analytics with SQL on Apache Flink
Fabian Hueske
 
Taking a look under the hood of Apache Flink's relational APIs.
Fabian Hueske
 
Juggling with Bits and Bytes - How Apache Flink operates on binary data
Fabian Hueske
 
Apache Flink - Hadoop MapReduce Compatibility
Fabian Hueske
 
Apache Flink - A Sneek Preview on Language Integrated Queries
Fabian Hueske
 
Apache Flink - Akka for the Win!
Fabian Hueske
 
Apache Flink - Community Update January 2015
Fabian Hueske
 
Ad

Recently uploaded (20)

PDF
Which Hiring Management Tools Offer the Best ROI?
HireME
 
PDF
Building Geospatial Data Warehouse for GIS by GIS with FME
Safe Software
 
PPTX
IDM Crack with Internet Download Manager 6.42 [Latest 2025]
HyperPc soft
 
PDF
Canva Pro Crack Free Download 2025-FREE LATEST
grete1122g
 
PPTX
Simplify Insurance Regulations with Compliance Management Software
Insurance Tech Services
 
PPTX
declaration of Variables and constants.pptx
meemee7378
 
PPTX
Foundations of Marketo Engage - Programs, Campaigns & Beyond - June 2025
BradBedford3
 
PDF
How Automation in Claims Handling Streamlined Operations
Insurance Tech Services
 
PDF
University Campus Navigation for All - Peak of Data & AI
Safe Software
 
PDF
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
 
PDF
Decipher SEO Solutions for your startup needs.
mathai2
 
PPTX
Test Case Design Techniques – Practical Examples & Best Practices in Software...
Muhammad Fahad Bashir
 
PDF
Best Practice for LLM Serving in the Cloud
Alluxio, Inc.
 
PPTX
Sap basis role in public cloud in s/4hana.pptx
htmlprogrammer987
 
PDF
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
 
PDF
From Data Preparation to Inference: How Alluxio Speeds Up AI
Alluxio, Inc.
 
DOCX
Zoho Creator Solution for EI by Elsner Technologies.docx
Elsner Technologies Pvt. Ltd.
 
PPT
Complete Guideliness to Build an Effective Maintenance Plan.ppt
QualityzeInc1
 
PDF
Sysinfo OST to PST Converter Infographic
SysInfo Tools
 
PDF
Heat Treatment Process Automation in India
Reckers Mechatronics
 
Which Hiring Management Tools Offer the Best ROI?
HireME
 
Building Geospatial Data Warehouse for GIS by GIS with FME
Safe Software
 
IDM Crack with Internet Download Manager 6.42 [Latest 2025]
HyperPc soft
 
Canva Pro Crack Free Download 2025-FREE LATEST
grete1122g
 
Simplify Insurance Regulations with Compliance Management Software
Insurance Tech Services
 
declaration of Variables and constants.pptx
meemee7378
 
Foundations of Marketo Engage - Programs, Campaigns & Beyond - June 2025
BradBedford3
 
How Automation in Claims Handling Streamlined Operations
Insurance Tech Services
 
University Campus Navigation for All - Peak of Data & AI
Safe Software
 
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
 
Decipher SEO Solutions for your startup needs.
mathai2
 
Test Case Design Techniques – Practical Examples & Best Practices in Software...
Muhammad Fahad Bashir
 
Best Practice for LLM Serving in the Cloud
Alluxio, Inc.
 
Sap basis role in public cloud in s/4hana.pptx
htmlprogrammer987
 
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
 
From Data Preparation to Inference: How Alluxio Speeds Up AI
Alluxio, Inc.
 
Zoho Creator Solution for EI by Elsner Technologies.docx
Elsner Technologies Pvt. Ltd.
 
Complete Guideliness to Build an Effective Maintenance Plan.ppt
QualityzeInc1
 
Sysinfo OST to PST Converter Infographic
SysInfo Tools
 
Heat Treatment Process Automation in India
Reckers Mechatronics
 

Data Stream Processing with Apache Flink

  • 1. Data Stream Processing with Apache Flink Fabian Hueske @fhueske Apache Flink Meetup Madrid, 25.02.2016
  • 2. What is Apache Flink? Apache Flink is an open source platform for scalable stream and batch processing. 2 • The core of Flink is a distributed streaming dataflow engine. • Executes dataflows in parallel on clusters • Provides a reliable backend for various workloads • DataStream and DataSet programming abstractions are the foundation for user programs and higher layers
  • 3. What is Apache Flink? 3 Streaming topologies Long batch pipelines Machine Learning at scale A stream processor with many faces Graph Analysis  resource utilization  iterative algorithms  Mutable state  low-latency processing
  • 4. History & Community of Flink From incubation until now 4
  • 5. 5 Apr ‘14 Jun ‘15Dec ‘14 0.70.60.5 0.9 0.10 Nov ‘15 Top level 0.8 Mar ‘15 1.0!
  • 6. Growing and Vibrant Community Flink is one of the largest and most active Apache big data projects: • more than 150 contributors • more than 600 forks • more than 1000 Github stars (since yesterday) 6
  • 7. Flink Meetups around the Globe 7
  • 8. Flink Meetups around the Globe 8 ✔ 
  • 11. What is Stream Processing? 11  Today, most data is continuously produced • user activity logs, web logs, sensors, database transactions, …  The common approach to analyze such data so far • Record data stream to stable storage (DBMS, HDFS, …) • Periodically analyze data with batch processing engine (DBMS, MapReduce, ...)  Streaming processing engines analyze data while it arrives
  • 12. Why do Stream Processing?  Decreases the overall latency to obtain results • No need to persist data in stable storage • No periodic batch analysis jobs  Simplifies the data infrastructure • Fewer moving parts to be maintained and coordinated  Makes time dimension of data explicit • Each event has a timestamp • Data can be processed based on timestamps 12
  • 13. What are the Requirements?  Low latency • Results in millisecond  High throughput • Millions of events per second  Exactly-once consistency • Correct results in case of failures  Out-of-order events • Process events based on their associated time  Intuitive APIs 13
  • 14. OS Stream Processors so far  Either low latency or high throughput  Exactly-once guarantees only with high latency  Lacking time semantics • Processing by wall clock time only • Events are processed in arrival order, not in the order they were created  Shortcomings lead to complicated system designs • Lambda architecture 14
  • 16. Stream Processing with Flink  Low latency • Pipelined processing engine  High throughput • Controllable checkpointing overhead  Exactly-once guarantees • Distributed snapshots  Support for out-of-order streams • Processing semantics based on event-time  Programmability • APIs similar to those known from the batch world 16
  • 17. Flink in Streaming Architectures 17 Flink Flink Flink Elasticsearch, Hbase, Cassandra, … HDFS Kafka Analytics on static data Data ingestion and ETL Analytics on data in motion
  • 18. The DataStream API Concise and easy-to-grasp code 18
  • 19. The DataStream API 19 case class Event(location: Location, numVehicles: Long) val stream: DataStream[Event] = …; stream .filter { evt => isIntersection(evt.location) }
  • 20. The DataStream API 20 case class Event(location: Location, numVehicles: Long) val stream: DataStream[Event] = …; stream .filter { evt => isIntersection(evt.location) } .keyBy("location") .timeWindow(Time.minutes(15), Time.minutes(5)) .sum("numVehicles")
  • 21. The DataStream API 21 case class Event(location: Location, numVehicles: Long) val stream: DataStream[Event] = …; stream .filter { evt => isIntersection(evt.location) } .keyBy("location") .timeWindow(Time.minutes(15), Time.minutes(5)) .sum("numVehicles") .keyBy("location") .mapWithState { (evt, state: Option[Model]) => { val model = state.orElse(new Model()) (model.classify(evt), Some(model.update(evt))) }}
  • 23. Event-time Processing  Most data streams consist of events • log entries, sensor data, user actions, … • Events have an associated timestamp  Many analysis tasks are based on time • “Average temperature every minute” • “Count of processed parcels per hour” • ...  Events often arrive out-of-order at processor • Distributed sources, network delays, non-synced clocks, …  Stream processor must respect time of events for consistent and sound results • Most stream processors use wall clock time 23
  • 24. Event Processing 24 Events occur on devices Queue / Log Events analyzed in a stream processor Stream Analysis Events stored in a log
  • 28. Event Processing 28 Out of order!!! First burst of events Second burst of events
  • 29. Event Processing 29 Event time windows Arrival time windows Instant event-at-a-time Flink supports out-of-order streams (event time) windows, arrival time windows (and mixtures) plus low latency processing. First burst of events Second burst of events
  • 30. Event-time Processing  Event-time processing decouples job semantics from processing speed  Analyze events from static data store and online stream using the same program  Semantically sound and consistent results  Details: http://data-artisans.com/how-apache-flink-enables-new- streaming-applications-part-1 30
  • 32. Monitoring & Dashboard  Many metrics exposed via REST interface  Web dashboard • Submit, stop, and cancel jobs • Inspect running and completed jobs • Analyze performance • Check exceptions • Inspect configuration • … 32
  • 33. Highly-available Cluster Setup  Stream applications run for weeks, months, … • Application must never fail! • No single-point-of-failure component allowed  Flink supports highly-available cluster setups • Master failures are resolved using Apache Zookeeper • Worker failures are resolved by master  Stand-alone cluster setup • Requires (manually started) stand-by masters and workers  YARN cluster setup • Masters and workers are automatically restarted 33
  • 34.  A save point is a consistent snapshot of a job • Includes source offsets and operator state • Stop job • Restart job from save point  What can I use it for? • Fix or update your job • A/B testing • Update Flink • Migrate cluster • …  Details: http://data-artisans.com/how-apache-flink-enables-new- streaming-applications Save Points 34
  • 35. Performance: Summary 35 Continuous streaming Latency-bound buffering Distributed Snapshots High Throughput & Low Latency With configurable throughput/latency tradeoff Details: http://data-artisans.com/high-throughput-low-latency- and-exactly-once-stream-processing-with-apache-flink
  • 36. Integration (picture not complete) 36 POSIX Java/Scala Collections POSIX
  • 37. Post v1.0 Roadmap What’s coming next? 37
  • 38. Stream SQL and Table API  Structured queries over data streams • LINQ-style Table API • Stream SQL  Based on Apache Calcite • SQL Parser and optimizer  “Compute every hour the number of orders and number ordered units for each product.” 38 SELECT STREAM productId, TUMBLE_END(rowtime, INTERVAL '1' HOUR) AS rowtime, COUNT(*) AS cnt, SUM(units) AS units FROM Orders GROUP BY TUMBLE(rowtime, INTERVAL '1' HOUR), productId;
  • 39. Complex Event Processing  Identify complex patterns in event streams • Correlations & sequences  Many applications • Network intrusion detection via access patterns • Item tracking (parcels, devices, …) • …  CEP depends on low latency processing • Most CEP system are not distributed  CEP in Flink • Easy-to-use API to define CEP patterns • Integration with Table API for structured analytics • Low-latency and high-throughput engine 39
  • 40. Dynamic Job Parallelism  Adjusting parallelism of tasks without (significantly) interrupting the program  Initial version based on save points • Trigger save point • Stop job • Restart job with adjusted parallelism  Later change parallelism while job is running  Vision is automatic adaption based on throughput 40
  • 41. Wrap up!  Flink is a kick-ass stream processor… • Low latency & high throughput • Exactly-once consistency • Event-time processing • Support for out-of-order streams • Intuitive API  with lots of features in the pipeline…  and a reliable batch processor as well! 41
  • 42. I ♥ Squirrels, do you?  More Information at • http://flink.apache.org/  Free Flink training at • http://dataartisans.github.io/flink-training  Sign up for user/dev mailing list  Get involved and contribute  Follow @ApacheFlink on Twitter 42
  • 43. 43

Editor's Notes

  • #4: Flink is an analytical system streaming topology: real-time; low latency “native”: build-in support in the system, no working around, no black-box next slide: define native by some “non-native” examples
  • #36: People previously made the case that high throughput and low latency are mutually exclusive