SlideShare a Scribd company logo
Pramod Immaneni <pramod@datatorrent.com>
PPMC Member, Architect @DataTorrent Inc
Apr 6th, 2016
A native Hadoop platform
IoT Ingestion & Analytics using Apache Apex
© 2015 DataTorrent
IoT (Internet of Things)
2
• Network of objects in physical world with electronic sensors
• Collecting and sending data
•Consumer
• Smart home – Smart bulbs, thermostats, locks
• Connected vehicles
• Wearables
• Industrial
• Manufacturing
• Retail
• Energy
© 2015 DataTorrent
Challenges
3
• Velocity of data
• Machines generate data at a much higher pace than humans
• They generate data continuously without pause posing processing
challenges
• Certain aspects of data may become stale if not processed in time
• Volume
• Large volumes of data for processing and storage
• Volume keep increasing because of the exponential growth in devices
• Research estimates zettabytes by 2020
• Variety
• Types of data – sensor, location, kpi
• Formats – csv, json
• Delivery mechanisms – files, message queues
© 2015 DataTorrent
What should a solution have
4
• Ingest and perform analytics on data in motion
• Handle the incoming throughput while maintaining SLAs
• Scale with the volume of data
• Fault tolerant so that no data is lost
• Flexible to handle data variety and allow custom business
logic
• Easy to use tools for the user
© 2015 DataTorrent
What is Apex
5
• Platform and runtime engine to enable scalable and fault-
tolerant distributed applications
• Hadoop native
• Process streaming or batch big data
• High throughput and low latency
• Library of commonly needed business logic
• Build any custom business logic in your application
© 2015 DataTorrent
Applications
6
• Distributed processing
• Application logic broken into components called operators that run in a distributed fashion
across your cluster
• Scalable
• Operators can be partitioned into multiple instances to handle large volumes
• Fault tolerant
• Automatically recover from node outages without having to reprocess from beginning
• State is preserved
• Long running applications
• Operators
• Use library to build applications quickly
• Write your own in Java using the API
• Operational insight – DataTorrent RTS
• See how each operator is performing and even record data
© 2015 DataTorrent
Apex Platform Overview
7
© 2015 DataTorrent
Apache Malhar Library
8
© 2015 DataTorrent
Application Development Model
9
 A Stream is a sequence of data tuples
 A typical Operator takes one or more input streams, performs computations & emits one or more output streams
• Each Operator is YOUR custom business logic in java, or built-in operator from our open source library
• Operator has many instances that run in parallel and each instance is single-threaded
 Directed Acyclic Graph (DAG) is made up of operators and streams
Directed Acyclic Graph (DAG)
Output
Stream
Tupl
e
Tupl
e
er
Operator
er
Operator
er
Operator
er
Operator
er
Operator
er
Operator
© 2015 DataTorrent
Native Hadoop Integration
10
• YARN is
the
resource
manager
• HDFS used
for storing
any
persistent
state
© 2015 DataTorrent
Advanced Windowing Support
11
 Application window
 Sliding window and tumbling window
 Checkpoint window
 No artificial latency
© 2015 DataTorrent
Scalability & Partitioning
12
NxM PartitionsUnifier
0 1 2 3
Logical DAG
0 1 2
1
1 Unifier
1
20
Logical Diagram
Physical Diagram with operator 1 with 3 partitions
0
Unifier
1a
1b
1c
2a
2b
Unifier 3
Physical DAG with (1a, 1b, 1c) and (2a, 2b): No bottleneck
Unifier
Unifier0
1a
1b
1c
2a
2b
Unifier 3
Physical DAG with (1a, 1b, 1c) and (2a, 2b): Bottleneck on intermediate Unifier
© 2015 DataTorrent
Advanced Partitioning
13
0
1a
1b
2 3 4Unifier
Physical DAG
0 4
3a2a1a
1b 2b 3b
Unifier
Physical DAG with Parallel Partition
Parallel Partition
Container
uopr
uopr1
uopr2
uopr3
uopr4
uopr1
uopr2
uopr3
uopr4
dopr
dopr
doprunifier
unifier
unifier
unifier
Container
Container
NICNIC
NICNIC
NIC
Container
NIC
Logical Plan
Execution Plan, for N = 4; M = 1
Execution Plan, for N = 4; M = 1, K = 2 with cascading unifiers
Cascading Unifiers
0 1 2 3 4
Logical DAG
© 2015 DataTorrent
Dynamic Partitioning
14
• Partitioning change while application is running
ᵒ Change number of partitions at runtime based on stats
ᵒ Determine initial number of partitions dynamically
• Kafka operators scale according to number of kafka partitions
ᵒ Supports re-distribution of state when number of partitions change
ᵒ API for custom scaler or partitioner
2b
2c
3
2a
2d
1b
1a1a 2a
1b 2b
3
1a 2b
1b 2c 3b
2a
2d
3a
Unifiers not shown
© 2015 DataTorrent
Fault Tolerance
15
• Operator state is checkpointed to a persistent store
ᵒ Automatically performed by engine, no additional work needed by operator
ᵒ In case of failure operators are restarted from checkpoint state
ᵒ Frequency configurable per operator
ᵒ Asynchronous and distributed by default
ᵒ Default store is HDFS
• Automatic detection and recovery of failed operators
ᵒ Heartbeat mechanism
• Buffering mechanism to ensure replay of data from recovered point so
that there is no loss of data
• Application master state checkpointed
© 2015 DataTorrent
Processing Guarantees
16
Atleast once
• On recovery data will be replayed from a previous checkpoint
ᵒ Messages will not be lost
ᵒ Default mechanism and is suitable for most applications
• Can be used in conjunction with following mechanisms to achieve
exactly-once behavior in fault recovery scenarios
ᵒ Transactions with meta information, Rewinding output, Feedback from
external entity, Idempotent operations
Atmost once
• On recovery the latest data is made available to operator
ᵒ Useful in use cases where some data loss is acceptable and latest data is
sufficient
Exactly once
• At least once + state recovery + operator logic to achieve end-to-end
exactly once
© 2015 DataTorrent
Ingestion Operators
17
• NFS/FTP/S3/HDFS Readers and Writers
• Kafka readers and writers
• Cassandra, HBase, Hive, JDBC
• CSV, JSON, Avro, XML parsers
• Filtering and enrichment
• Dedup
• Dimension computation
• Stream Joins
• …
© 2015 DataTorrent
Pipeline builder
18
© 2015 DataTorrent
Monitoring Console
Logical View
19
© 2015 DataTorrent
Monitoring Console
Physical View
20
© 2015 DataTorrent
Real-Time Dashboards
Real Time Visualization
21
© 2015 DataTorrent
IoT solutions
22
© 2015 DataTorrent
Resources
23
• Ingest application – http://www.datatorrent.com/download
• Solutions – http://www.datatorrent.com/solutions
• Subscribe - http://apex.incubator.apache.org/community.html
• Twitter - @ApacheApex; Follow - https://twitter.com/apacheapex
• Free Enterprise License for Startups - https://www.datatorrent.com/product/startup-
accelerator/
• Cloud Trial - http://datatorrent.com/cloudtrial.html
© 2015 DataTorrent
We Are Hiring
24
• jobs@datatorrent.com
• Developers/Architects
• QA Automation Developers
• Information Developers
• Build and Release
• Community Leaders
© 2015 DataTorrent
Upcoming Events
25
• April 14th 6pm PDT – IOT Big Data Ingestion and Processing in
Hadoop by Silver Spring Networks
• May 4th 6pm PDT – Fault Tolerant HDFS r/w with Apache Apex and
Apex (native Hadoop) benchmarks
End
26

More Related Content

What's hot (20)

PPTX
Introduction to Apache Apex
Apache Apex
 
PPTX
Intro to Apache Apex - Next Gen Native Hadoop Platform - Hackac
Apache Apex
 
PPTX
Architectual Comparison of Apache Apex and Spark Streaming
Apache Apex
 
PPTX
Smart Partitioning with Apache Apex (Webinar)
Apache Apex
 
PPTX
Introduction to Apache Apex and writing a big data streaming application
Apache Apex
 
PDF
Extending The Yahoo Streaming Benchmark to Apache Apex
Apache Apex
 
PPTX
University program - writing an apache apex application
Akshay Gore
 
PPTX
Intro to Apache Apex (next gen Hadoop) & comparison to Spark Streaming
Apache Apex
 
PDF
Building your first aplication using Apache Apex
Yogi Devendra Vyavahare
 
PPTX
Java High Level Stream API
Apache Apex
 
PPTX
Intro to Apache Apex @ Women in Big Data
Apache Apex
 
PDF
Apache Big Data EU 2016: Next Gen Big Data Analytics with Apache Apex
Apache Apex
 
PDF
Actionable Insights with Apache Apex at Apache Big Data 2017 by Devendra Tagare
Apache Apex
 
PPTX
Fault-Tolerant File Input & Output
Apache Apex
 
PPTX
Deep Dive into Apache Apex App Development
Apache Apex
 
PPTX
Ingestion and Dimensions Compute and Enrich using Apache Apex
Apache Apex
 
PPTX
Fault Tolerance and Processing Semantics in Apache Apex
Apache Apex Organizer
 
PPTX
Ingesting Data from Kafka to JDBC with Transformation and Enrichment
Apache Apex
 
PDF
From Batch to Streaming with Apache Apex Dataworks Summit 2017
Apache Apex
 
PDF
Ingestion file copy using apex
Apache Apex
 
Introduction to Apache Apex
Apache Apex
 
Intro to Apache Apex - Next Gen Native Hadoop Platform - Hackac
Apache Apex
 
Architectual Comparison of Apache Apex and Spark Streaming
Apache Apex
 
Smart Partitioning with Apache Apex (Webinar)
Apache Apex
 
Introduction to Apache Apex and writing a big data streaming application
Apache Apex
 
Extending The Yahoo Streaming Benchmark to Apache Apex
Apache Apex
 
University program - writing an apache apex application
Akshay Gore
 
Intro to Apache Apex (next gen Hadoop) & comparison to Spark Streaming
Apache Apex
 
Building your first aplication using Apache Apex
Yogi Devendra Vyavahare
 
Java High Level Stream API
Apache Apex
 
Intro to Apache Apex @ Women in Big Data
Apache Apex
 
Apache Big Data EU 2016: Next Gen Big Data Analytics with Apache Apex
Apache Apex
 
Actionable Insights with Apache Apex at Apache Big Data 2017 by Devendra Tagare
Apache Apex
 
Fault-Tolerant File Input & Output
Apache Apex
 
Deep Dive into Apache Apex App Development
Apache Apex
 
Ingestion and Dimensions Compute and Enrich using Apache Apex
Apache Apex
 
Fault Tolerance and Processing Semantics in Apache Apex
Apache Apex Organizer
 
Ingesting Data from Kafka to JDBC with Transformation and Enrichment
Apache Apex
 
From Batch to Streaming with Apache Apex Dataworks Summit 2017
Apache Apex
 
Ingestion file copy using apex
Apache Apex
 

Viewers also liked (11)

PPTX
Apache Jena Elephas and Friends
Rob Vesse
 
PDF
An Introduction to the Jena API
Craig Trim
 
PDF
Semantic Integration with Apache Jena and Stanbol
All Things Open
 
PDF
Jena – A Semantic Web Framework for Java
Aleksander Pohl
 
PPTX
Jena Programming
Myungjin Lee
 
PDF
Open source data ingestion
Treasure Data, Inc.
 
PPTX
High Speed Continuous & Reliable Data Ingest into Hadoop
DataWorks Summit
 
PPTX
Breakout: Hadoop and the Operational Data Store
Cloudera, Inc.
 
PDF
A Reference Architecture for ETL 2.0
DataWorks Summit
 
KEY
Large scale ETL with Hadoop
OReillyStrata
 
PPTX
Hadoop data ingestion
Vinod Nayal
 
Apache Jena Elephas and Friends
Rob Vesse
 
An Introduction to the Jena API
Craig Trim
 
Semantic Integration with Apache Jena and Stanbol
All Things Open
 
Jena – A Semantic Web Framework for Java
Aleksander Pohl
 
Jena Programming
Myungjin Lee
 
Open source data ingestion
Treasure Data, Inc.
 
High Speed Continuous & Reliable Data Ingest into Hadoop
DataWorks Summit
 
Breakout: Hadoop and the Operational Data Store
Cloudera, Inc.
 
A Reference Architecture for ETL 2.0
DataWorks Summit
 
Large scale ETL with Hadoop
OReillyStrata
 
Hadoop data ingestion
Vinod Nayal
 
Ad

Similar to IoT Ingestion & Analytics using Apache Apex - A Native Hadoop Platform (20)

PPTX
Stream Processing with Apache Apex
Pramod Immaneni
 
PPTX
Apache Apex Meetup at Cask
Apache Apex
 
PPTX
Apache Apex - Hadoop Users Group
Pramod Immaneni
 
PPTX
February 2016 HUG: Apache Apex (incubating): Stream Processing Architecture a...
Yahoo Developer Network
 
PPTX
Intro to Apache Apex - Next Gen Platform for Ingest and Transform
Apache Apex
 
PDF
IMCSummit 2015 - Day 1 IT Business Track - Designing a Big Data Analytics Pla...
In-Memory Computing Summit
 
PPSX
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
Apache Apex
 
PPTX
Apache Apex: Stream Processing Architecture and Applications
Comsysto Reply GmbH
 
PDF
Introduction to Apache Apex by Thomas Weise
Big Data Spain
 
PPTX
Next Gen Big Data Analytics with Apache Apex
DataWorks Summit/Hadoop Summit
 
PDF
BigDataSpain 2016: Introduction to Apache Apex
Thomas Weise
 
PDF
Data torrent meetup-productioneng
Chris Westin
 
PPTX
Thomas Weise, Apache Apex PMC Member and Architect/Co-Founder, DataTorrent - ...
Dataconomy Media
 
PPTX
Big Data Berlin v8.0 Stream Processing with Apache Apex
Apache Apex
 
PPTX
Stream data from Apache Kafka for processing with Apache Apex
Apache Apex
 
PDF
BigDataSpain 2016: Stream Processing Applications with Apache Apex
Thomas Weise
 
PDF
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
Sumeet Singh
 
PDF
Stream Processing use cases and applications with Apache Apex by Thomas Weise
Big Data Spain
 
PDF
Real-time Stream Processing using Apache Apex
Apache Apex
 
PPTX
February 2017 HUG: Exactly-once end-to-end processing with Apache Apex
Yahoo Developer Network
 
Stream Processing with Apache Apex
Pramod Immaneni
 
Apache Apex Meetup at Cask
Apache Apex
 
Apache Apex - Hadoop Users Group
Pramod Immaneni
 
February 2016 HUG: Apache Apex (incubating): Stream Processing Architecture a...
Yahoo Developer Network
 
Intro to Apache Apex - Next Gen Platform for Ingest and Transform
Apache Apex
 
IMCSummit 2015 - Day 1 IT Business Track - Designing a Big Data Analytics Pla...
In-Memory Computing Summit
 
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
Apache Apex
 
Apache Apex: Stream Processing Architecture and Applications
Comsysto Reply GmbH
 
Introduction to Apache Apex by Thomas Weise
Big Data Spain
 
Next Gen Big Data Analytics with Apache Apex
DataWorks Summit/Hadoop Summit
 
BigDataSpain 2016: Introduction to Apache Apex
Thomas Weise
 
Data torrent meetup-productioneng
Chris Westin
 
Thomas Weise, Apache Apex PMC Member and Architect/Co-Founder, DataTorrent - ...
Dataconomy Media
 
Big Data Berlin v8.0 Stream Processing with Apache Apex
Apache Apex
 
Stream data from Apache Kafka for processing with Apache Apex
Apache Apex
 
BigDataSpain 2016: Stream Processing Applications with Apache Apex
Thomas Weise
 
Strata Conference + Hadoop World NY 2016: Lessons learned building a scalable...
Sumeet Singh
 
Stream Processing use cases and applications with Apache Apex by Thomas Weise
Big Data Spain
 
Real-time Stream Processing using Apache Apex
Apache Apex
 
February 2017 HUG: Exactly-once end-to-end processing with Apache Apex
Yahoo Developer Network
 
Ad

More from Apache Apex (16)

PDF
Low Latency Polyglot Model Scoring using Apache Apex
Apache Apex
 
PDF
Developing streaming applications with apache apex (strata + hadoop world)
Apache Apex
 
PDF
Apache Big Data EU 2016: Building Streaming Applications with Apache Apex
Apache Apex
 
PPTX
Hadoop Interacting with HDFS
Apache Apex
 
PPTX
Introduction to Real-Time Data Processing
Apache Apex
 
PPTX
Introduction to Yarn
Apache Apex
 
PPTX
Introduction to Map Reduce
Apache Apex
 
PPTX
HDFS Internals
Apache Apex
 
PPTX
Intro to Big Data Hadoop
Apache Apex
 
PPTX
Kafka to Hadoop Ingest with Parsing, Dedup and other Big Data Transformations
Apache Apex
 
PPTX
Building Your First Apache Apex (Next Gen Big Data/Hadoop) Application
Apache Apex
 
PPTX
Intro to YARN (Hadoop 2.0) & Apex as YARN App (Next Gen Big Data)
Apache Apex
 
PPTX
Apache Beam (incubating)
Apache Apex
 
PPTX
Making sense of Apache Bigtop's role in ODPi and how it matters to Apache Apex
Apache Apex
 
PPTX
Apache Apex & Bigtop
Apache Apex
 
PDF
Building Your First Apache Apex Application
Apache Apex
 
Low Latency Polyglot Model Scoring using Apache Apex
Apache Apex
 
Developing streaming applications with apache apex (strata + hadoop world)
Apache Apex
 
Apache Big Data EU 2016: Building Streaming Applications with Apache Apex
Apache Apex
 
Hadoop Interacting with HDFS
Apache Apex
 
Introduction to Real-Time Data Processing
Apache Apex
 
Introduction to Yarn
Apache Apex
 
Introduction to Map Reduce
Apache Apex
 
HDFS Internals
Apache Apex
 
Intro to Big Data Hadoop
Apache Apex
 
Kafka to Hadoop Ingest with Parsing, Dedup and other Big Data Transformations
Apache Apex
 
Building Your First Apache Apex (Next Gen Big Data/Hadoop) Application
Apache Apex
 
Intro to YARN (Hadoop 2.0) & Apex as YARN App (Next Gen Big Data)
Apache Apex
 
Apache Beam (incubating)
Apache Apex
 
Making sense of Apache Bigtop's role in ODPi and how it matters to Apache Apex
Apache Apex
 
Apache Apex & Bigtop
Apache Apex
 
Building Your First Apache Apex Application
Apache Apex
 

Recently uploaded (20)

PDF
Next level data operations using Power Automate magic
Andries den Haan
 
PDF
Dev Dives: Accelerating agentic automation with Autopilot for Everyone
UiPathCommunity
 
PDF
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
PDF
GDG Cloud Southlake #44: Eyal Bukchin: Tightening the Kubernetes Feedback Loo...
James Anderson
 
PDF
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
PDF
99 Bottles of Trust on the Wall — Operational Principles for Trust in Cyber C...
treyka
 
PDF
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
Edge AI and Vision Alliance
 
PDF
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
PPTX
Mastering Authorization: Integrating Authentication and Authorization Data in...
Hitachi, Ltd. OSS Solution Center.
 
PDF
How to Visualize the ​Spatio-Temporal Data Using CesiumJS​
SANGHEE SHIN
 
PDF
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
PDF
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
PPTX
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
PDF
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
PDF
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
PDF
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
PDF
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
Next level data operations using Power Automate magic
Andries den Haan
 
Dev Dives: Accelerating agentic automation with Autopilot for Everyone
UiPathCommunity
 
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
GDG Cloud Southlake #44: Eyal Bukchin: Tightening the Kubernetes Feedback Loo...
James Anderson
 
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
99 Bottles of Trust on the Wall — Operational Principles for Trust in Cyber C...
treyka
 
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
Edge AI and Vision Alliance
 
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
Mastering Authorization: Integrating Authentication and Authorization Data in...
Hitachi, Ltd. OSS Solution Center.
 
How to Visualize the ​Spatio-Temporal Data Using CesiumJS​
SANGHEE SHIN
 
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 

IoT Ingestion & Analytics using Apache Apex - A Native Hadoop Platform

  • 1. Pramod Immaneni <[email protected]> PPMC Member, Architect @DataTorrent Inc Apr 6th, 2016 A native Hadoop platform IoT Ingestion & Analytics using Apache Apex
  • 2. © 2015 DataTorrent IoT (Internet of Things) 2 • Network of objects in physical world with electronic sensors • Collecting and sending data •Consumer • Smart home – Smart bulbs, thermostats, locks • Connected vehicles • Wearables • Industrial • Manufacturing • Retail • Energy
  • 3. © 2015 DataTorrent Challenges 3 • Velocity of data • Machines generate data at a much higher pace than humans • They generate data continuously without pause posing processing challenges • Certain aspects of data may become stale if not processed in time • Volume • Large volumes of data for processing and storage • Volume keep increasing because of the exponential growth in devices • Research estimates zettabytes by 2020 • Variety • Types of data – sensor, location, kpi • Formats – csv, json • Delivery mechanisms – files, message queues
  • 4. © 2015 DataTorrent What should a solution have 4 • Ingest and perform analytics on data in motion • Handle the incoming throughput while maintaining SLAs • Scale with the volume of data • Fault tolerant so that no data is lost • Flexible to handle data variety and allow custom business logic • Easy to use tools for the user
  • 5. © 2015 DataTorrent What is Apex 5 • Platform and runtime engine to enable scalable and fault- tolerant distributed applications • Hadoop native • Process streaming or batch big data • High throughput and low latency • Library of commonly needed business logic • Build any custom business logic in your application
  • 6. © 2015 DataTorrent Applications 6 • Distributed processing • Application logic broken into components called operators that run in a distributed fashion across your cluster • Scalable • Operators can be partitioned into multiple instances to handle large volumes • Fault tolerant • Automatically recover from node outages without having to reprocess from beginning • State is preserved • Long running applications • Operators • Use library to build applications quickly • Write your own in Java using the API • Operational insight – DataTorrent RTS • See how each operator is performing and even record data
  • 7. © 2015 DataTorrent Apex Platform Overview 7
  • 8. © 2015 DataTorrent Apache Malhar Library 8
  • 9. © 2015 DataTorrent Application Development Model 9  A Stream is a sequence of data tuples  A typical Operator takes one or more input streams, performs computations & emits one or more output streams • Each Operator is YOUR custom business logic in java, or built-in operator from our open source library • Operator has many instances that run in parallel and each instance is single-threaded  Directed Acyclic Graph (DAG) is made up of operators and streams Directed Acyclic Graph (DAG) Output Stream Tupl e Tupl e er Operator er Operator er Operator er Operator er Operator er Operator
  • 10. © 2015 DataTorrent Native Hadoop Integration 10 • YARN is the resource manager • HDFS used for storing any persistent state
  • 11. © 2015 DataTorrent Advanced Windowing Support 11  Application window  Sliding window and tumbling window  Checkpoint window  No artificial latency
  • 12. © 2015 DataTorrent Scalability & Partitioning 12 NxM PartitionsUnifier 0 1 2 3 Logical DAG 0 1 2 1 1 Unifier 1 20 Logical Diagram Physical Diagram with operator 1 with 3 partitions 0 Unifier 1a 1b 1c 2a 2b Unifier 3 Physical DAG with (1a, 1b, 1c) and (2a, 2b): No bottleneck Unifier Unifier0 1a 1b 1c 2a 2b Unifier 3 Physical DAG with (1a, 1b, 1c) and (2a, 2b): Bottleneck on intermediate Unifier
  • 13. © 2015 DataTorrent Advanced Partitioning 13 0 1a 1b 2 3 4Unifier Physical DAG 0 4 3a2a1a 1b 2b 3b Unifier Physical DAG with Parallel Partition Parallel Partition Container uopr uopr1 uopr2 uopr3 uopr4 uopr1 uopr2 uopr3 uopr4 dopr dopr doprunifier unifier unifier unifier Container Container NICNIC NICNIC NIC Container NIC Logical Plan Execution Plan, for N = 4; M = 1 Execution Plan, for N = 4; M = 1, K = 2 with cascading unifiers Cascading Unifiers 0 1 2 3 4 Logical DAG
  • 14. © 2015 DataTorrent Dynamic Partitioning 14 • Partitioning change while application is running ᵒ Change number of partitions at runtime based on stats ᵒ Determine initial number of partitions dynamically • Kafka operators scale according to number of kafka partitions ᵒ Supports re-distribution of state when number of partitions change ᵒ API for custom scaler or partitioner 2b 2c 3 2a 2d 1b 1a1a 2a 1b 2b 3 1a 2b 1b 2c 3b 2a 2d 3a Unifiers not shown
  • 15. © 2015 DataTorrent Fault Tolerance 15 • Operator state is checkpointed to a persistent store ᵒ Automatically performed by engine, no additional work needed by operator ᵒ In case of failure operators are restarted from checkpoint state ᵒ Frequency configurable per operator ᵒ Asynchronous and distributed by default ᵒ Default store is HDFS • Automatic detection and recovery of failed operators ᵒ Heartbeat mechanism • Buffering mechanism to ensure replay of data from recovered point so that there is no loss of data • Application master state checkpointed
  • 16. © 2015 DataTorrent Processing Guarantees 16 Atleast once • On recovery data will be replayed from a previous checkpoint ᵒ Messages will not be lost ᵒ Default mechanism and is suitable for most applications • Can be used in conjunction with following mechanisms to achieve exactly-once behavior in fault recovery scenarios ᵒ Transactions with meta information, Rewinding output, Feedback from external entity, Idempotent operations Atmost once • On recovery the latest data is made available to operator ᵒ Useful in use cases where some data loss is acceptable and latest data is sufficient Exactly once • At least once + state recovery + operator logic to achieve end-to-end exactly once
  • 17. © 2015 DataTorrent Ingestion Operators 17 • NFS/FTP/S3/HDFS Readers and Writers • Kafka readers and writers • Cassandra, HBase, Hive, JDBC • CSV, JSON, Avro, XML parsers • Filtering and enrichment • Dedup • Dimension computation • Stream Joins • …
  • 19. © 2015 DataTorrent Monitoring Console Logical View 19
  • 20. © 2015 DataTorrent Monitoring Console Physical View 20
  • 21. © 2015 DataTorrent Real-Time Dashboards Real Time Visualization 21
  • 22. © 2015 DataTorrent IoT solutions 22
  • 23. © 2015 DataTorrent Resources 23 • Ingest application – http://www.datatorrent.com/download • Solutions – http://www.datatorrent.com/solutions • Subscribe - http://apex.incubator.apache.org/community.html • Twitter - @ApacheApex; Follow - https://twitter.com/apacheapex • Free Enterprise License for Startups - https://www.datatorrent.com/product/startup- accelerator/ • Cloud Trial - http://datatorrent.com/cloudtrial.html
  • 24. © 2015 DataTorrent We Are Hiring 24 • [email protected] • Developers/Architects • QA Automation Developers • Information Developers • Build and Release • Community Leaders
  • 25. © 2015 DataTorrent Upcoming Events 25 • April 14th 6pm PDT – IOT Big Data Ingestion and Processing in Hadoop by Silver Spring Networks • May 4th 6pm PDT – Fault Tolerant HDFS r/w with Apache Apex and Apex (native Hadoop) benchmarks