SlideShare a Scribd company logo
Introduction to Real Time
Analytics using Apache Storm
www.edureka.in/apache-storm
Buy Complete Course at : www.edureka.in/apache-storm
Batch Starts On: 17th May 07:00 AM , IST / 16th May 06:30 PM, PDT
Course Fee: USD 329 / INR (17795 + 12.36% Service tax)**
Introductory (15% OFF) Price : USD 280 / INR 15126
For Existing edureka Customers (25% OFF) Price : USD 247/ INR 13346
* Offer expires on 11th May
Post your Questions on Twitter on @edurekaIN: #askEdureka
Objectives of this Session
• Un
• The need for Real Time Analytics - Usecases
• How does Storm come to rescue?
• Where does Storm fit in Hadoop Framework?
• Storm Architecture – Components of Storm
• Quiz to reinforce your learning
For Queries during the session and class recording:
Post on Twitter @edurekaIN: #askEdureka
Post on Facebook /edurekaIN
www.edureka.in/apache-storm
Need of Real Time Analytics
Ret
• Banking - Fraud Transaction Detection
• Telecommunication – Silent Roamers Detection
• Retail- Inventory Dynamic Pricing
• Social Networking- Trending Topics
*Covered in module 5 and 6 in the course
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
Growing Interest in Apache Storm
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
Storm Usecases – Need for Real Time Analytics
Twitter Trends
Responsive Logs
Source: https://github.com/nathanmarz/storm/wiki/Powered-By
Custom Magazine Feeds
Real Time Video Analytics
Enable Clinicians to Make
Medical Decisions
Compare and Display
Real Time Prices
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
What is Storm ?
 Apache Storm is a free and open source distributed real-time computation system.
 Storm makes it easy to reliably process unbounded streams of data.
 Storm does for real-time processing what Hadoop did for batch processing.
 Simple, can be used with any programming language.
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
Understanding the Storm Architecture
Nimbus
Zookeeper
Supervisor
Zookeeper
Zookeeper
Supervisor
Supervisor
Supervisor
Supervisor
www.edureka.in/apache-storm
*Covered in module 2 in the course
Twitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
ZooKeeper
Nimbus ZooKeeper
ZooKeeper
Supervisor
Supervisor
Supervisor
Supervisor
Supervisor
Nimbus node (master node, similar to the Hadoop
JobTracker):
» Uploads computations for execution
» Distributes code across the cluster
» Launches workers across the cluster
» Monitors computation and reallocates
workers as needed
ZooKeeper nodes:
» Coordinates the Storm cluster
Supervisor nodes :
» Communicates with Nimbus through
Zookeeper, starts and stops workers
according to signals from Nimbus
Storm Components
A Storm cluster has 3 sets of nodes
1. Nimbus node
2. Zookeeper nodes
3. Supervisor nodes
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
The work is delegated to different types of components that are each responsible for a simple specific processing task.
The input stream of a Storm cluster is handled by a component called a spout.
The spout passes the data to a component called a bolt, which transforms it in some way.
A bolt either persists the data in some sort of storage, or passes it to some other bolt.
Storm Topology
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
spout
spout
bolt
bolt
bolt
bolt
passes data
passes data
transforms data
data storage
Input Data
Source
Why Storm is ideal for Real Time Processing
Fast – benchmarked as processing one million, 100 byte messages, per second per node.
Scalable – with parallel calculations that run across a cluster of machines.
Fault-tolerant – when workers die, Storm will automatically restart them. If a node dies, the
worker will be restarted on another node.
Reliable – Storm guarantees that each unit of data (tuple) will be processed at least once or
exactly once. Messages are only replayed when there are failures.
Easy to operate – standard configurations are suitable for production on day one. Once
deployed, Storm is easy to operate.
http://hortonworks.com/hadoop/storm/
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
MapReduce
(Batch)
INTERACTIVE
(Text)
ONLINE
(HBase)
STORM
(Streaming)
GRAPH
(Giraph)
IN-MEMORY
(Spark)
HPC MPI
(OpenMPI)
OTHER
(Search)
(Weave..)
http://hadoop.apache.org/docs/stable2/hadoop-yarn/hadoop-yarn-site/YARN.html
Storm in the Hadoop Framework
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
Upcoming Batch for Storm
Start Date:
17th May (07:00 AM – 10:00 AM, India Time) / 16th May (06:30 PM – 09:30 PM, Pacific Time)
Curriculum:
Module 1: Introduction of Big Data and Storm
Module 2: Getting Started with Storm
Module 3: Spouts and Bolts
Module 4: Trident Topologies
Module 5: Real Life Storm Project – 1
Module 6: Real Life Storm Project – 2
Price:
Course Fee: USD 329 / INR (17795 + 12.36% Service tax)**
Introductory Discount : 15%
Discount for Existing Edureka Customers: 25%
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
www.edureka.in/apache-storm
Annie’s Question
Storm can be used in:
- Real-time Processing
- Batch Processing
- Both
www.edureka.in/apache-storm
Annie’s Answer
Real-time Processing
www.edureka.in/apache-storm
Annie’s Question
Which of them can be a source of Stream?
- Spout
- Bolt
- Both
www.edureka.in/apache-storm
Annie’s Answer
Both
www.edureka.in/apache-storm
Annie’s Question
It is not possible to run Storm process along with MapReduce jobs inside a
Hadoop Cluster.
- True
- False
www.edureka.in/apache-storm
Annie’s Answer
False. With Hadoop 2.0, it is possible.
www.edureka.in/apache-storm
Annie’s Question
A Nimbus Node is similar to TaskTracker Node in Hadoop Cluster.
- True
- False
www.edureka.in/apache-storm
Annie’s Answer
No. A Nimbus Node is more like a JobTracker Node in Hadoop
www.edureka.in/apache-storm
Annie’s Question
A Storm topology is defined in terms of
- Nimbus, Zookeeper, Supervisor nodes
- Spout, Bolt
- Spout, Bolt, Nimbus, Zookeeper, Supervisor nodes
- Spout, Bolt, Zookeeper node
www.edureka.in/apache-storm
Annie’s Answer
Spout and Bolt
Questions?
www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
Buy Complete Course at : www.edureka.in/apache-storm
Batch Starts On: 17th May 07:00 AM , IST / 16th May 06:30 PM, PDT
Course Fee: USD 329 / INR (17795 + 12.36% Service tax)**
Introductory (15% OFF) Price : USD 280 / INR 15126
For Existing edureka Customers (25% OFF) Price : USD 247/ INR 13346
* Offer expires on 11th May

More Related Content

PDF
Big Data, Hadoop & Spark
PDF
Apache Storm - Introduction au traitement temps-réel avec Storm
PPTX
PPTX
Slide #1:Introduction to Apache Storm
PDF
Apache Storm
PDF
Tech day hadoop, Spark
PPTX
ARCHITECTURE MICROSERVICE : TOUR D’HORIZON DU CONCEPT ET BONNES PRATIQUES
Big Data, Hadoop & Spark
Apache Storm - Introduction au traitement temps-réel avec Storm
Slide #1:Introduction to Apache Storm
Apache Storm
Tech day hadoop, Spark
ARCHITECTURE MICROSERVICE : TOUR D’HORIZON DU CONCEPT ET BONNES PRATIQUES

What's hot (20)

PDF
Architectures orientées services
PPTX
Chp2 - Vers les Architectures Orientées Services
PDF
Storm: distributed and fault-tolerant realtime computation
PPTX
Hive Tutorial | Hive Architecture | Hive Tutorial For Beginners | Hive In Had...
PDF
Apache Spark Overview
PDF
Maven et industrialisation du logiciel
PDF
Apache Storm
PPTX
Apache CloudStack Architecture by Alex Huang
PDF
Apache SPARK ML : principes, concepts et mise en œuvre
PDF
Rapport Sockets en Java
PDF
Introduction to Spark (Intern Event Presentation)
PPTX
Apache Spark Core
PPTX
Hadoop et son écosystème
PPTX
Introduction aux systèmes répartis
PDF
BigData_TP3 : Spark
PPTX
noSQL
PPTX
Introduction aux architectures des SI
PDF
Support NodeJS avec TypeScript Express MongoDB
PDF
Hive tuning
PPT
RabbitMQ.ppt
Architectures orientées services
Chp2 - Vers les Architectures Orientées Services
Storm: distributed and fault-tolerant realtime computation
Hive Tutorial | Hive Architecture | Hive Tutorial For Beginners | Hive In Had...
Apache Spark Overview
Maven et industrialisation du logiciel
Apache Storm
Apache CloudStack Architecture by Alex Huang
Apache SPARK ML : principes, concepts et mise en œuvre
Rapport Sockets en Java
Introduction to Spark (Intern Event Presentation)
Apache Spark Core
Hadoop et son écosystème
Introduction aux systèmes répartis
BigData_TP3 : Spark
noSQL
Introduction aux architectures des SI
Support NodeJS avec TypeScript Express MongoDB
Hive tuning
RabbitMQ.ppt
Ad

Viewers also liked (20)

PDF
Real-time Big Data Processing with Storm
PPTX
Python for Big Data Analytics
PDF
Realtime Analytics with Storm and Hadoop
PDF
Hadoop Summit Europe 2014: Apache Storm Architecture
PDF
StormWars - when the data stream shrinks
PPTX
Real-Time Analytics with Apache Storm
PDF
Twitter Stream Processing
PPTX
Apache Storm - Real Time Analytics
PPTX
Storm – Streaming Data Analytics at Scale - StampedeCon 2014
PDF
Learning Stream Processing with Apache Storm
PDF
Storm@Twitter, SIGMOD 2014
PDF
Big Data Streaming processing using Apache Storm - FOSSCOMM 2016
PDF
Real time big data analytics with Storm by Ron Bodkin of Think Big Analytics
PDF
Real time and reliable processing with Apache Storm
PDF
Design Patterns : Solution to Software Design Problems
PPTX
Apache Kafka with Spark Streaming: Real-time Analytics Redefined
PDF
The Future of Apache Storm
PPTX
Python for Big Data Analytics
PPTX
Introduction to MongoDB
PDF
Introduction to Cassandra Basics
Real-time Big Data Processing with Storm
Python for Big Data Analytics
Realtime Analytics with Storm and Hadoop
Hadoop Summit Europe 2014: Apache Storm Architecture
StormWars - when the data stream shrinks
Real-Time Analytics with Apache Storm
Twitter Stream Processing
Apache Storm - Real Time Analytics
Storm – Streaming Data Analytics at Scale - StampedeCon 2014
Learning Stream Processing with Apache Storm
Storm@Twitter, SIGMOD 2014
Big Data Streaming processing using Apache Storm - FOSSCOMM 2016
Real time big data analytics with Storm by Ron Bodkin of Think Big Analytics
Real time and reliable processing with Apache Storm
Design Patterns : Solution to Software Design Problems
Apache Kafka with Spark Streaming: Real-time Analytics Redefined
The Future of Apache Storm
Python for Big Data Analytics
Introduction to MongoDB
Introduction to Cassandra Basics
Ad

Similar to Apache Storm (20)

PDF
Storm Processing Internals
PPTX
Apache Storm
PDF
Apache Storm
PDF
Storm at spider.io - London Storm Meetup 2013-06-18
PDF
Streaming Analytics Unit 3 notes for engineers
PPTX
Introduction to Storm
PPTX
1 storm-intro
PDF
Real time data processing frameworks
PDF
Hadoop_RealTime_Processing_eVenkat
PDF
Stream processing using Apache Storm - Big Data Meetup Athens 2016
PDF
4th Athens Big Data Meetup - 1st Talk - Big Data Streaming Processing Using A...
PPTX
Phily JUG : Web Services APIs for Real-time Analytics w/ Storm and DropWizard
PDF
SA UNIT III STORM.pdf
PPTX
PPTX
IOT.pptx
PPTX
The Future of Apache Storm
PPTX
Apache Storm Internals
PPTX
Introduction to Streaming Distributed Processing with Storm
DOCX
INFO491FinalPaper
PDF
The Future of Apache Storm
Storm Processing Internals
Apache Storm
Apache Storm
Storm at spider.io - London Storm Meetup 2013-06-18
Streaming Analytics Unit 3 notes for engineers
Introduction to Storm
1 storm-intro
Real time data processing frameworks
Hadoop_RealTime_Processing_eVenkat
Stream processing using Apache Storm - Big Data Meetup Athens 2016
4th Athens Big Data Meetup - 1st Talk - Big Data Streaming Processing Using A...
Phily JUG : Web Services APIs for Real-time Analytics w/ Storm and DropWizard
SA UNIT III STORM.pdf
IOT.pptx
The Future of Apache Storm
Apache Storm Internals
Introduction to Streaming Distributed Processing with Storm
INFO491FinalPaper
The Future of Apache Storm

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
PDF
Top 5 Trending Business Intelligence Tools | Edureka
PDF
Tableau Tutorial for Data Science | Edureka
PDF
Python Programming Tutorial | Edureka
PDF
Top 5 PMP Certifications | Edureka
PDF
Top Maven Interview Questions in 2020 | Edureka
PDF
Linux Mint Tutorial | Edureka
PDF
How to Deploy Java Web App in AWS| Edureka
PDF
Importance of Digital Marketing | Edureka
PDF
RPA in 2020 | Edureka
PDF
Email Notifications in Jenkins | Edureka
PDF
EA Algorithm in Machine Learning | Edureka
PDF
Cognitive AI Tutorial | Edureka
PDF
AWS Cloud Practitioner Tutorial | Edureka
PDF
Blue Prism Top Interview Questions | Edureka
PDF
Big Data on AWS Tutorial | Edureka
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
PDF
Kubernetes Installation on Ubuntu | Edureka
PDF
Introduction to DevOps | Edureka
What to learn during the 21 days Lockdown | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Tableau Tutorial for Data Science | Edureka
Python Programming Tutorial | Edureka
Top 5 PMP Certifications | Edureka
Top Maven Interview Questions in 2020 | Edureka
Linux Mint Tutorial | Edureka
How to Deploy Java Web App in AWS| Edureka
Importance of Digital Marketing | Edureka
RPA in 2020 | Edureka
Email Notifications in Jenkins | Edureka
EA Algorithm in Machine Learning | Edureka
Cognitive AI Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Blue Prism Top Interview Questions | Edureka
Big Data on AWS Tutorial | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Kubernetes Installation on Ubuntu | Edureka
Introduction to DevOps | Edureka

Recently uploaded (20)

PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PDF
IGGE1 Understanding the Self1234567891011
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PDF
1_English_Language_Set_2.pdf probationary
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
Indian roads congress 037 - 2012 Flexible pavement
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PPTX
20th Century Theater, Methods, History.pptx
PPTX
Unit 4 Computer Architecture Multicore Processor.pptx
PPTX
Computer Architecture Input Output Memory.pptx
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
IGGE1 Understanding the Self1234567891011
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
Paper A Mock Exam 9_ Attempt review.pdf.
1_English_Language_Set_2.pdf probationary
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
Share_Module_2_Power_conflict_and_negotiation.pptx
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Indian roads congress 037 - 2012 Flexible pavement
B.Sc. DS Unit 2 Software Engineering.pptx
TNA_Presentation-1-Final(SAVE)) (1).pptx
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
20th Century Theater, Methods, History.pptx
Unit 4 Computer Architecture Multicore Processor.pptx
Computer Architecture Input Output Memory.pptx
Practical Manual AGRO-233 Principles and Practices of Natural Farming

Apache Storm

  • 1. Introduction to Real Time Analytics using Apache Storm www.edureka.in/apache-storm Buy Complete Course at : www.edureka.in/apache-storm Batch Starts On: 17th May 07:00 AM , IST / 16th May 06:30 PM, PDT Course Fee: USD 329 / INR (17795 + 12.36% Service tax)** Introductory (15% OFF) Price : USD 280 / INR 15126 For Existing edureka Customers (25% OFF) Price : USD 247/ INR 13346 * Offer expires on 11th May Post your Questions on Twitter on @edurekaIN: #askEdureka
  • 2. Objectives of this Session • Un • The need for Real Time Analytics - Usecases • How does Storm come to rescue? • Where does Storm fit in Hadoop Framework? • Storm Architecture – Components of Storm • Quiz to reinforce your learning For Queries during the session and class recording: Post on Twitter @edurekaIN: #askEdureka Post on Facebook /edurekaIN www.edureka.in/apache-storm
  • 3. Need of Real Time Analytics Ret • Banking - Fraud Transaction Detection • Telecommunication – Silent Roamers Detection • Retail- Inventory Dynamic Pricing • Social Networking- Trending Topics *Covered in module 5 and 6 in the course www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 4. Growing Interest in Apache Storm www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 5. Storm Usecases – Need for Real Time Analytics Twitter Trends Responsive Logs Source: https://github.com/nathanmarz/storm/wiki/Powered-By Custom Magazine Feeds Real Time Video Analytics Enable Clinicians to Make Medical Decisions Compare and Display Real Time Prices www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 6. What is Storm ?  Apache Storm is a free and open source distributed real-time computation system.  Storm makes it easy to reliably process unbounded streams of data.  Storm does for real-time processing what Hadoop did for batch processing.  Simple, can be used with any programming language. www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 7. Understanding the Storm Architecture Nimbus Zookeeper Supervisor Zookeeper Zookeeper Supervisor Supervisor Supervisor Supervisor www.edureka.in/apache-storm *Covered in module 2 in the course Twitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 8. ZooKeeper Nimbus ZooKeeper ZooKeeper Supervisor Supervisor Supervisor Supervisor Supervisor Nimbus node (master node, similar to the Hadoop JobTracker): » Uploads computations for execution » Distributes code across the cluster » Launches workers across the cluster » Monitors computation and reallocates workers as needed ZooKeeper nodes: » Coordinates the Storm cluster Supervisor nodes : » Communicates with Nimbus through Zookeeper, starts and stops workers according to signals from Nimbus Storm Components A Storm cluster has 3 sets of nodes 1. Nimbus node 2. Zookeeper nodes 3. Supervisor nodes www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 9. The work is delegated to different types of components that are each responsible for a simple specific processing task. The input stream of a Storm cluster is handled by a component called a spout. The spout passes the data to a component called a bolt, which transforms it in some way. A bolt either persists the data in some sort of storage, or passes it to some other bolt. Storm Topology www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions spout spout bolt bolt bolt bolt passes data passes data transforms data data storage Input Data Source
  • 10. Why Storm is ideal for Real Time Processing Fast – benchmarked as processing one million, 100 byte messages, per second per node. Scalable – with parallel calculations that run across a cluster of machines. Fault-tolerant – when workers die, Storm will automatically restart them. If a node dies, the worker will be restarted on another node. Reliable – Storm guarantees that each unit of data (tuple) will be processed at least once or exactly once. Messages are only replayed when there are failures. Easy to operate – standard configurations are suitable for production on day one. Once deployed, Storm is easy to operate. http://hortonworks.com/hadoop/storm/ www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 12. Upcoming Batch for Storm Start Date: 17th May (07:00 AM – 10:00 AM, India Time) / 16th May (06:30 PM – 09:30 PM, Pacific Time) Curriculum: Module 1: Introduction of Big Data and Storm Module 2: Getting Started with Storm Module 3: Spouts and Bolts Module 4: Trident Topologies Module 5: Real Life Storm Project – 1 Module 6: Real Life Storm Project – 2 Price: Course Fee: USD 329 / INR (17795 + 12.36% Service tax)** Introductory Discount : 15% Discount for Existing Edureka Customers: 25% www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions
  • 13. www.edureka.in/apache-storm Annie’s Question Storm can be used in: - Real-time Processing - Batch Processing - Both
  • 15. www.edureka.in/apache-storm Annie’s Question Which of them can be a source of Stream? - Spout - Bolt - Both
  • 17. www.edureka.in/apache-storm Annie’s Question It is not possible to run Storm process along with MapReduce jobs inside a Hadoop Cluster. - True - False
  • 19. www.edureka.in/apache-storm Annie’s Question A Nimbus Node is similar to TaskTracker Node in Hadoop Cluster. - True - False
  • 20. www.edureka.in/apache-storm Annie’s Answer No. A Nimbus Node is more like a JobTracker Node in Hadoop
  • 21. www.edureka.in/apache-storm Annie’s Question A Storm topology is defined in terms of - Nimbus, Zookeeper, Supervisor nodes - Spout, Bolt - Spout, Bolt, Nimbus, Zookeeper, Supervisor nodes - Spout, Bolt, Zookeeper node
  • 23. Questions? www.edureka.in/apache-stormTwitter @edurekaIN, Facebook /edurekaIN, use #askEdureka for Questions Buy Complete Course at : www.edureka.in/apache-storm Batch Starts On: 17th May 07:00 AM , IST / 16th May 06:30 PM, PDT Course Fee: USD 329 / INR (17795 + 12.36% Service tax)** Introductory (15% OFF) Price : USD 280 / INR 15126 For Existing edureka Customers (25% OFF) Price : USD 247/ INR 13346 * Offer expires on 11th May