SlideShare a Scribd company logo
1 of 43
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

More Related Content

What's hot

What's hot (20)

Extending Flink SQL for stream processing use cases
Extending Flink SQL for stream processing use casesExtending Flink SQL for stream processing use cases
Extending Flink SQL for stream processing use cases
 
Processing Semantically-Ordered Streams in Financial Services
Processing Semantically-Ordered Streams in Financial ServicesProcessing Semantically-Ordered Streams in Financial Services
Processing Semantically-Ordered Streams in Financial Services
 
Apache Flink in the Cloud-Native Era
Apache Flink in the Cloud-Native EraApache Flink in the Cloud-Native Era
Apache Flink in the Cloud-Native Era
 
Near real-time statistical modeling and anomaly detection using Flink!
Near real-time statistical modeling and anomaly detection using Flink!Near real-time statistical modeling and anomaly detection using Flink!
Near real-time statistical modeling and anomaly detection using Flink!
 
Building a fully managed stream processing platform on Flink at scale for Lin...
Building a fully managed stream processing platform on Flink at scale for Lin...Building a fully managed stream processing platform on Flink at scale for Lin...
Building a fully managed stream processing platform on Flink at scale for Lin...
 
Apache Flink 101 - the rise of stream processing and beyond
Apache Flink 101 - the rise of stream processing and beyondApache Flink 101 - the rise of stream processing and beyond
Apache Flink 101 - the rise of stream processing and beyond
 
Dynamic Rule-based Real-time Market Data Alerts
Dynamic Rule-based Real-time Market Data AlertsDynamic Rule-based Real-time Market Data Alerts
Dynamic Rule-based Real-time Market Data Alerts
 
Real-Life Use Cases & Architectures for Event Streaming with Apache Kafka
Real-Life Use Cases & Architectures for Event Streaming with Apache KafkaReal-Life Use Cases & Architectures for Event Streaming with Apache Kafka
Real-Life Use Cases & Architectures for Event Streaming with Apache Kafka
 
How to build a streaming Lakehouse with Flink, Kafka, and Hudi
How to build a streaming Lakehouse with Flink, Kafka, and HudiHow to build a streaming Lakehouse with Flink, Kafka, and Hudi
How to build a streaming Lakehouse with Flink, Kafka, and Hudi
 
Unlocking the Power of Apache Flink: An Introduction in 4 Acts
Unlocking the Power of Apache Flink: An Introduction in 4 ActsUnlocking the Power of Apache Flink: An Introduction in 4 Acts
Unlocking the Power of Apache Flink: An Introduction in 4 Acts
 
Evening out the uneven: dealing with skew in Flink
Evening out the uneven: dealing with skew in FlinkEvening out the uneven: dealing with skew in Flink
Evening out the uneven: dealing with skew in Flink
 
Introduction to Kafka Streams
Introduction to Kafka StreamsIntroduction to Kafka Streams
Introduction to Kafka Streams
 
CDC Stream Processing With Apache Flink With Timo Walther | Current 2022
CDC Stream Processing With Apache Flink With Timo Walther | Current 2022CDC Stream Processing With Apache Flink With Timo Walther | Current 2022
CDC Stream Processing With Apache Flink With Timo Walther | Current 2022
 
Getting Started with Confluent Schema Registry
Getting Started with Confluent Schema RegistryGetting Started with Confluent Schema Registry
Getting Started with Confluent Schema Registry
 
Apache Kafka Best Practices
Apache Kafka Best PracticesApache Kafka Best Practices
Apache Kafka Best Practices
 
Exactly-Once Financial Data Processing at Scale with Flink and Pinot
Exactly-Once Financial Data Processing at Scale with Flink and PinotExactly-Once Financial Data Processing at Scale with Flink and Pinot
Exactly-Once Financial Data Processing at Scale with Flink and Pinot
 
Apache Flink and what it is used for
Apache Flink and what it is used forApache Flink and what it is used for
Apache Flink and what it is used for
 
A Deep Dive into Kafka Controller
A Deep Dive into Kafka ControllerA Deep Dive into Kafka Controller
A Deep Dive into Kafka Controller
 
Temporal-Joins in Kafka Streams and ksqlDB | Matthias Sax, Confluent
Temporal-Joins in Kafka Streams and ksqlDB | Matthias Sax, ConfluentTemporal-Joins in Kafka Streams and ksqlDB | Matthias Sax, Confluent
Temporal-Joins in Kafka Streams and ksqlDB | Matthias Sax, Confluent
 
Kafka Streams: What it is, and how to use it?
Kafka Streams: What it is, and how to use it?Kafka Streams: What it is, and how to use it?
Kafka Streams: What it is, and how to use it?
 

Similar to Data Stream Processing with Apache Flink

Similar to Data Stream Processing with Apache Flink (20)

Stream Processing with Apache Flink
Stream Processing with Apache FlinkStream Processing with Apache Flink
Stream Processing with Apache Flink
 
Debunking Common Myths in Stream Processing
Debunking Common Myths in Stream ProcessingDebunking Common Myths in Stream Processing
Debunking Common Myths in Stream Processing
 
Stream Processing with Apache Flink (Flink.tw Meetup 2016/07/19)
Stream Processing with Apache Flink (Flink.tw Meetup 2016/07/19)Stream Processing with Apache Flink (Flink.tw Meetup 2016/07/19)
Stream Processing with Apache Flink (Flink.tw Meetup 2016/07/19)
 
QCon London - Stream Processing with Apache Flink
QCon London - Stream Processing with Apache FlinkQCon London - Stream Processing with Apache Flink
QCon London - Stream Processing with Apache Flink
 
GOTO Night Amsterdam - Stream processing with Apache Flink
GOTO Night Amsterdam - Stream processing with Apache FlinkGOTO Night Amsterdam - Stream processing with Apache Flink
GOTO Night Amsterdam - Stream processing with Apache Flink
 
Apache Flink at Strata San Jose 2016
Apache Flink at Strata San Jose 2016Apache Flink at Strata San Jose 2016
Apache Flink at Strata San Jose 2016
 
Counting Elements in Streams
Counting Elements in StreamsCounting Elements in Streams
Counting Elements in Streams
 
Intro to Apache Apex - Next Gen Platform for Ingest and Transform
Intro to Apache Apex - Next Gen Platform for Ingest and TransformIntro to Apache Apex - Next Gen Platform for Ingest and Transform
Intro to Apache Apex - Next Gen Platform for Ingest and Transform
 
Apache Flink(tm) - A Next-Generation Stream Processor
Apache Flink(tm) - A Next-Generation Stream ProcessorApache Flink(tm) - A Next-Generation Stream Processor
Apache Flink(tm) - A Next-Generation Stream Processor
 
Hadoop Summit SJ 2016: Next Gen Big Data Analytics with Apache Apex
Hadoop Summit SJ 2016: Next Gen Big Data Analytics with Apache ApexHadoop Summit SJ 2016: Next Gen Big Data Analytics with Apache Apex
Hadoop Summit SJ 2016: Next Gen Big Data Analytics with Apache Apex
 
Next Gen Big Data Analytics with Apache Apex
Next Gen Big Data Analytics with Apache Apex Next Gen Big Data Analytics with Apache Apex
Next Gen Big Data Analytics with Apache Apex
 
data Artisans Product Announcement
data Artisans Product Announcementdata Artisans Product Announcement
data Artisans Product Announcement
 
Big Data Analytics Platforms by KTH and RISE SICS
Big Data Analytics Platforms by KTH and RISE SICSBig Data Analytics Platforms by KTH and RISE SICS
Big Data Analytics Platforms by KTH and RISE SICS
 
Apache Big Data 2016: Next Gen Big Data Analytics with Apache Apex
Apache Big Data 2016: Next Gen Big Data Analytics with Apache ApexApache Big Data 2016: Next Gen Big Data Analytics with Apache Apex
Apache Big Data 2016: Next Gen Big Data Analytics with Apache Apex
 
Zurich Flink Meetup
Zurich Flink MeetupZurich Flink Meetup
Zurich Flink Meetup
 
Architecture of Flink's Streaming Runtime @ ApacheCon EU 2015
Architecture of Flink's Streaming Runtime @ ApacheCon EU 2015Architecture of Flink's Streaming Runtime @ ApacheCon EU 2015
Architecture of Flink's Streaming Runtime @ ApacheCon EU 2015
 
Debunking Six Common Myths in Stream Processing
Debunking Six Common Myths in Stream ProcessingDebunking Six Common Myths in Stream Processing
Debunking Six Common Myths in Stream Processing
 
Ingestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache ApexIngestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache Apex
 
Chicago Flink Meetup: Flink's streaming architecture
Chicago Flink Meetup: Flink's streaming architectureChicago Flink Meetup: Flink's streaming architecture
Chicago Flink Meetup: Flink's streaming architecture
 
Data Stream Processing - Concepts and Frameworks
Data Stream Processing - Concepts and FrameworksData Stream Processing - Concepts and Frameworks
Data Stream Processing - Concepts and Frameworks
 

More from Fabian Hueske

More from Fabian Hueske (13)

Flink SQL in Action
Flink SQL in ActionFlink SQL in Action
Flink SQL in Action
 
Flink's Journey from Academia to the ASF
Flink's Journey from Academia to the ASFFlink's Journey from Academia to the ASF
Flink's Journey from Academia to the ASF
 
Why and how to leverage the power and simplicity of SQL on Apache Flink
Why and how to leverage the power and simplicity of SQL on Apache FlinkWhy and how to leverage the power and simplicity of SQL on Apache Flink
Why and how to leverage the power and simplicity of SQL on Apache Flink
 
Streaming SQL to unify batch and stream processing: Theory and practice with ...
Streaming SQL to unify batch and stream processing: Theory and practice with ...Streaming SQL to unify batch and stream processing: Theory and practice with ...
Streaming SQL to unify batch and stream processing: Theory and practice with ...
 
Stream Analytics with SQL on Apache Flink
 Stream Analytics with SQL on Apache Flink Stream Analytics with SQL on Apache Flink
Stream Analytics with SQL on Apache Flink
 
Stream Analytics with SQL on Apache Flink
Stream Analytics with SQL on Apache FlinkStream Analytics with SQL on Apache Flink
Stream Analytics with SQL on Apache Flink
 
Taking a look under the hood of Apache Flink's relational APIs.
Taking a look under the hood of Apache Flink's relational APIs.Taking a look under the hood of Apache Flink's relational APIs.
Taking a look under the hood of Apache Flink's relational APIs.
 
Juggling with Bits and Bytes - How Apache Flink operates on binary data
Juggling with Bits and Bytes - How Apache Flink operates on binary dataJuggling with Bits and Bytes - How Apache Flink operates on binary data
Juggling with Bits and Bytes - How Apache Flink operates on binary data
 
ApacheCon: Apache Flink - Fast and Reliable Large-Scale Data Processing
ApacheCon: Apache Flink - Fast and Reliable Large-Scale Data ProcessingApacheCon: Apache Flink - Fast and Reliable Large-Scale Data Processing
ApacheCon: Apache Flink - Fast and Reliable Large-Scale Data Processing
 
Apache Flink - Hadoop MapReduce Compatibility
Apache Flink - Hadoop MapReduce CompatibilityApache Flink - Hadoop MapReduce Compatibility
Apache Flink - Hadoop MapReduce Compatibility
 
Apache Flink - A Sneek Preview on Language Integrated Queries
Apache Flink - A Sneek Preview on Language Integrated QueriesApache Flink - A Sneek Preview on Language Integrated Queries
Apache Flink - A Sneek Preview on Language Integrated Queries
 
Apache Flink - Akka for the Win!
Apache Flink - Akka for the Win!Apache Flink - Akka for the Win!
Apache Flink - Akka for the Win!
 
Apache Flink - Community Update January 2015
Apache Flink - Community Update January 2015Apache Flink - Community Update January 2015
Apache Flink - Community Update January 2015
 

Recently uploaded

Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 

Recently uploaded (20)

%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 

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

  1. 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
  2. People previously made the case that high throughput and low latency are mutually exclusive