SlideShare una empresa de Scribd logo
1 de 48
“Data is a precious things and will
last longer than the system
themselves”
– Tim Berners Lee
Sandeep Kumar
What is Data ?
• What is Data ?
• And why should we care about it ?
What is Big Data ?
• Big data is a collection of data sets so large and
complex that it becomes difficult to process using
traditional data processing applications.
Few Examples
• Web logs
• RFID
• Social Data-Facebook, Linkedin, Twitter.
• Call Detail Records
• Large-Scale e-commerce
• Medical Records
• Video archives
• Atmospheric Science
• Astronomy
• Feeds
• Media & Advertising.
What is Big Data ?
• Ancestry.com stores around 2.5 petabytes of Data.
• The New York Stock Exchange generates about one
terabyte of new trade data per day.
• The Internet Archive stores around 2 petabytes of
data, and is growing at a rate of 20 terabytes per
month. (http://archive.org/web/web.php)
How to Process The Big Data?
• Need to process large datasets (>100TB)
• Only reading 100TB of data can be overwhelming
• Takes ~11 days to read on a standard computer
• Takes a day across a 10GB link (very high end
storage solution)
• On a single node (@50MB/s) – 23days
• On a 1000 node cluster – 33min
Not so easy………..
• The challenges are in search, sharing, transfer,
visualization etc.
• Moving data from storage cluster to computation cluster is not
feasible.
• In large cluster failure is expected . Computer fails everyday.
• Very expensive to build reliability into each application.
• massively parallel software running on tens, hundreds, or even
thousands of servers
• A programmer worries about errors, data motion,
communication.
What We are looking for.
What we are looking for.
• A common infrastructure and standard set of tools to
handle this complexity.
• A Efficient, Reliable fault-tolerant and usable
framework.
What is Hadoop ?
• Its a framework that allows distributed processing of
large data sets across clusters of computers.
• It is designed to scale up from single servers to
thousands of machines.
• Its also designed to run on commodity hardware.
 Scalable: store and process petabytes, scale by adding
HW and added without needing to change data
formats.
 Economical: 1000s of commodity machines.
 Efficient: runs tasks where data is located.
 Flexible: Hadoop is schema-less, and can absorb any
type of data, structured or not, from any number of
sources.
 Fault tolerant: When you lose a node, the system
redirects work to another location of the data and
continues processing without missing a beat.
Hadoop is….
Hadoop is useful for…….
• Batch Data Processing.
• Log Processing.
• Document Analysis & Indexing.
• Text Mining.
• Crawl Data Processing.
• Highly parallel data intensive distributed applications.
Use The Right Tool For The Right Job
Hadoop:RDBMS
When to use?
• Write once read many times.
• Structured or Not (Agility)
• Batch Processing
When to use?
• Interactive Reporting (<1sec)
• Multistep Transactions
• Lots of Inserts/Updates/Deletes
Hadoop Terminology…….
Node 1
Hadoop Terminology…….
Node 1
Node 2
Hadoop Terminology…….
Node 1
Node 2
Node 3
Hadoop Terminology…….
Node 1
Node 2
.
.
Node 3
Rack 1
Hadoop Terminology…….
Node 1
Node 2
.
.
Node 3
Rack 1
Node 1
Node 2
.
.
Node 3
Rack 2
Hadoop Terminology…….
Node 1
Node 2
.
.
Node 3
Rack 1
Node 1
Node 2
.
.
Node 3
Rack 2
Node 1
Node 2
.
.
Node 3
Rack 3
Hadoop Terminology…….
Node 1
Node 2
.
.
Node 3
Rack 1
Node 1
Node 2
.
.
Node 3
Rack 2
Node 1
Node 2
.
.
Node 3
Rack 3
Hadoop Cluster
Hadoop Framework…….
Hadoop Nodes…….
• HDFS Nodes
 NameNode (Master)
 DataNode (Slaves)
 Checkpoint Node
 Secondary NameNode (deprecated)
 Backup Node
Hadoop Nodes…….
• MapReduce nodes
 JobTracker (Master)
 TaskTracker (Slaves)
Hadoop Nodes-Overview
Hadoop Nodes-NameNode
• Manages the filesystem namespace and metadata
• Replicate missing blocks
• No data goes through the NameNode
• NameNode mainly consists of:
 fsimage: Contains a checkpoint copy of the metadata on disk
 edit logs: Records all write operations, synchronizes with
metadata in RAM after each write
 In case of ‘power failure’ on NameNode Can recover using
fsimage + edit logs
Hadoop Nodes-CheckPoint Node
• Periodically creates checkpoints of NameNode filesystem
• The Checkpoint node should run on a different machine
than the NameNode
• Should have same storage requirements as NameNode
• There can be many Checkpoint nodes per cluster
Hadoop Nodes-BackUp Node
• Difference with Checkpoint node is that it keeps and up-
to-date copy of metadata in RAM
• Same RAM requirements as NameNode
• Can only have one Backup node per cluster
Hadoop Nodes-Data Node
Can be many per Hadoop cluster
•Manages blocks with data and serves them to
clients
•Periodically reports to NameNode the list of
blocks it stores
•Use inexpensive commodity hardware for this
node
Hadoop Nodes-Job Tracker
One per Hadoop cluster (Multiple namenode can be configured in Hadoop 2.2 or letter version)
•Receives job requests submitted by client
•Schedules and monitors MapReduce jobs on task
trackers
Hadoop Nodes-Task Tracker
• Can be many per Hadoop cluster
• Executes MapReduce operations
• Reads blocks from DataNodes
Map Reduce
It offers:
• Operates on key and value pairs.
• Two major functions: Map() and Reduce()
• Input formats and splits
• Number of tasks.
• Provides status about jobs to users
• Monitors task progress
Map Reduce Diagram
Map Reduce Architecture.
Map Reduce Job.
JobTracker
client
TaskTackers &
Datanodes
←4.tasks
NameNode
3. Namespace info
Input Output .
The MapReduce framework operates on <key, value> pairs.
It views the input to the job as a set of <key, value> pairs and
produces a set of <key, value> pairs as the output of the job.
Input Output..
Input and Output types of a MapReduce job:
(input) <k1, v1> -> map -> <k2, v2> -> combine -> <k2, v2>
-> reduce -> <k3, v3> (output)
Reference:
http://hadoop.apache.org/docs/r1.0.4/mapred_tutorial.html
HDFS Architecture
Hadoop Tools…….
Hive
 It’s a data warehouse system for Hadoop
 Providing data summarization, query, and analysis.
Hadoop Tools…….
• Pig
 Its a high-level platform for creating MapReduce
programs used with Hadoop.
 Developed by Yahoo.
Hadoop Tools…….
Hbase
 Used when needs random, real-time read/write access to
your Big Data.
 Also used for storing historical data.
Hadoop Tools…….
• Hue
 Its a Web application for interacting with Apache Hadoop.
It supports a file browser, job tracker interface, Hive, Pig
and more.
Hadoop Tools…….
• Sqoop
 Its a Command-line interface application for transferring
data between relational databases and Hadoop.
 Microsoft uses a Sqoop-based connector to help transfer
data from Microsoft SQL Server databases to Hadoop.
Hadoop Tools…….
• Flume
 Its used for efficiently collecting, aggregating, and
moving large amounts of distributed data or log data.
Hadoop Tools…….
• Flume Model
Hadoop in the Enterprise…….
There are many tools developed on top of hadoop these days and
those are available in market and being used widely in industry.
We can get more on it from Cloudera, hortonworks and from
Google.com
Thanks for your time today.

Más contenido relacionado

La actualidad más candente

Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)Uwe Printz
 
Hadoop: Distributed Data Processing
Hadoop: Distributed Data ProcessingHadoop: Distributed Data Processing
Hadoop: Distributed Data ProcessingCloudera, Inc.
 
Hadoop Fundamentals
Hadoop FundamentalsHadoop Fundamentals
Hadoop Fundamentalsits_skm
 
Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...
Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...
Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...Uwe Printz
 
Hadoop: The elephant in the room
Hadoop: The elephant in the roomHadoop: The elephant in the room
Hadoop: The elephant in the roomcacois
 
Payment Gateway Live hadoop project
Payment Gateway Live hadoop projectPayment Gateway Live hadoop project
Payment Gateway Live hadoop projectKamal A
 
Apache Hadoop
Apache HadoopApache Hadoop
Apache HadoopAjit Koti
 
The Evolution of the Hadoop Ecosystem
The Evolution of the Hadoop EcosystemThe Evolution of the Hadoop Ecosystem
The Evolution of the Hadoop EcosystemCloudera, Inc.
 
Syncsort et le retour d'expérience ComScore
Syncsort et le retour d'expérience ComScoreSyncsort et le retour d'expérience ComScore
Syncsort et le retour d'expérience ComScoreModern Data Stack France
 

La actualidad más candente (20)

Hadoop overview
Hadoop overviewHadoop overview
Hadoop overview
 
2. hadoop fundamentals
2. hadoop fundamentals2. hadoop fundamentals
2. hadoop fundamentals
 
Hadoop Technology
Hadoop TechnologyHadoop Technology
Hadoop Technology
 
Hadoop
HadoopHadoop
Hadoop
 
Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)Introduction to the Hadoop Ecosystem (FrOSCon Edition)
Introduction to the Hadoop Ecosystem (FrOSCon Edition)
 
Hadoop and Distributed Computing
Hadoop and Distributed ComputingHadoop and Distributed Computing
Hadoop and Distributed Computing
 
Hadoop: Distributed Data Processing
Hadoop: Distributed Data ProcessingHadoop: Distributed Data Processing
Hadoop: Distributed Data Processing
 
Hadoop Fundamentals
Hadoop FundamentalsHadoop Fundamentals
Hadoop Fundamentals
 
Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...
Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...
Introduction to the Hadoop Ecosystem with Hadoop 2.0 aka YARN (Java Serbia Ed...
 
Hadoop Ecosystem Overview
Hadoop Ecosystem OverviewHadoop Ecosystem Overview
Hadoop Ecosystem Overview
 
Hadoop: The elephant in the room
Hadoop: The elephant in the roomHadoop: The elephant in the room
Hadoop: The elephant in the room
 
Hadoop
Hadoop Hadoop
Hadoop
 
Payment Gateway Live hadoop project
Payment Gateway Live hadoop projectPayment Gateway Live hadoop project
Payment Gateway Live hadoop project
 
Hadoop ecosystem
Hadoop ecosystemHadoop ecosystem
Hadoop ecosystem
 
Hadoop
HadoopHadoop
Hadoop
 
Apache Hadoop
Apache HadoopApache Hadoop
Apache Hadoop
 
Hadoop
Hadoop Hadoop
Hadoop
 
The Evolution of the Hadoop Ecosystem
The Evolution of the Hadoop EcosystemThe Evolution of the Hadoop Ecosystem
The Evolution of the Hadoop Ecosystem
 
Syncsort et le retour d'expérience ComScore
Syncsort et le retour d'expérience ComScoreSyncsort et le retour d'expérience ComScore
Syncsort et le retour d'expérience ComScore
 
Hadoop Ecosystem
Hadoop EcosystemHadoop Ecosystem
Hadoop Ecosystem
 

Destacado

Tarzan
TarzanTarzan
Tarzanbymafe
 
Laughwithnotears xrist1
Laughwithnotears xrist1Laughwithnotears xrist1
Laughwithnotears xrist1bymafe
 
το χρονικό της ‘’στάσης του νίκα’’
το χρονικό της ‘’στάσης του νίκα’’το χρονικό της ‘’στάσης του νίκα’’
το χρονικό της ‘’στάσης του νίκα’’guest67bc6b
 
Africa
AfricaAfrica
Africabymafe
 
Greece from above
Greece from aboveGreece from above
Greece from abovebymafe
 
Turismo Emilia Romagna: un'APT alla scoperta del web sociale
Turismo Emilia Romagna: un'APT alla scoperta del web socialeTurismo Emilia Romagna: un'APT alla scoperta del web sociale
Turismo Emilia Romagna: un'APT alla scoperta del web socialetagbologna lab
 
百会办公门户使用手册
百会办公门户使用手册百会办公门户使用手册
百会办公门户使用手册ideapress
 
Uusi kasvu ja uusi työ akava berd volume
Uusi kasvu ja uusi työ akava berd volumeUusi kasvu ja uusi työ akava berd volume
Uusi kasvu ja uusi työ akava berd volumeVesa Vuorenkoski
 
S'outiller pour mieux s'organiser
S'outiller pour mieux s'organiserS'outiller pour mieux s'organiser
S'outiller pour mieux s'organiserJulie Rodrigue
 
παρουσίασ..
παρουσίασ..παρουσίασ..
παρουσίασ..bymafe
 
Gli studenti e la rete
Gli studenti e la reteGli studenti e la rete
Gli studenti e la retetagbologna lab
 
Wayfinding objects mechanism
Wayfinding objects mechanismWayfinding objects mechanism
Wayfinding objects mechanismjianfeng
 
Sustaining Your Business After A Disaster Fmj Jan Feb 2012
Sustaining Your Business After A Disaster   Fmj Jan Feb 2012Sustaining Your Business After A Disaster   Fmj Jan Feb 2012
Sustaining Your Business After A Disaster Fmj Jan Feb 2012afpizzitola
 
تصاميمي
تصاميميتصاميمي
تصاميميbotareq
 

Destacado (20)

Tarzan
TarzanTarzan
Tarzan
 
Laughwithnotears xrist1
Laughwithnotears xrist1Laughwithnotears xrist1
Laughwithnotears xrist1
 
Love your local school
Love your local schoolLove your local school
Love your local school
 
το χρονικό της ‘’στάσης του νίκα’’
το χρονικό της ‘’στάσης του νίκα’’το χρονικό της ‘’στάσης του νίκα’’
το χρονικό της ‘’στάσης του νίκα’’
 
Google App Engine
Google App EngineGoogle App Engine
Google App Engine
 
Perk Up Your Pub
Perk Up Your PubPerk Up Your Pub
Perk Up Your Pub
 
Africa
AfricaAfrica
Africa
 
Greece from above
Greece from aboveGreece from above
Greece from above
 
Turismo Emilia Romagna: un'APT alla scoperta del web sociale
Turismo Emilia Romagna: un'APT alla scoperta del web socialeTurismo Emilia Romagna: un'APT alla scoperta del web sociale
Turismo Emilia Romagna: un'APT alla scoperta del web sociale
 
Dramas for creation time
Dramas for creation timeDramas for creation time
Dramas for creation time
 
Arkas
ArkasArkas
Arkas
 
Usa jeopardy
Usa jeopardyUsa jeopardy
Usa jeopardy
 
百会办公门户使用手册
百会办公门户使用手册百会办公门户使用手册
百会办公门户使用手册
 
Uusi kasvu ja uusi työ akava berd volume
Uusi kasvu ja uusi työ akava berd volumeUusi kasvu ja uusi työ akava berd volume
Uusi kasvu ja uusi työ akava berd volume
 
S'outiller pour mieux s'organiser
S'outiller pour mieux s'organiserS'outiller pour mieux s'organiser
S'outiller pour mieux s'organiser
 
παρουσίασ..
παρουσίασ..παρουσίασ..
παρουσίασ..
 
Gli studenti e la rete
Gli studenti e la reteGli studenti e la rete
Gli studenti e la rete
 
Wayfinding objects mechanism
Wayfinding objects mechanismWayfinding objects mechanism
Wayfinding objects mechanism
 
Sustaining Your Business After A Disaster Fmj Jan Feb 2012
Sustaining Your Business After A Disaster   Fmj Jan Feb 2012Sustaining Your Business After A Disaster   Fmj Jan Feb 2012
Sustaining Your Business After A Disaster Fmj Jan Feb 2012
 
تصاميمي
تصاميميتصاميمي
تصاميمي
 

Similar a Hadoop-Quick introduction

Similar a Hadoop-Quick introduction (20)

Hadoop ppt1
Hadoop ppt1Hadoop ppt1
Hadoop ppt1
 
Big data Hadoop
Big data  Hadoop   Big data  Hadoop
Big data Hadoop
 
List of Engineering Colleges in Uttarakhand
List of Engineering Colleges in UttarakhandList of Engineering Colleges in Uttarakhand
List of Engineering Colleges in Uttarakhand
 
Hadoop.pptx
Hadoop.pptxHadoop.pptx
Hadoop.pptx
 
Hadoop.pptx
Hadoop.pptxHadoop.pptx
Hadoop.pptx
 
Big Data Technologies - Hadoop
Big Data Technologies - HadoopBig Data Technologies - Hadoop
Big Data Technologies - Hadoop
 
Bigdata workshop february 2015
Bigdata workshop  february 2015 Bigdata workshop  february 2015
Bigdata workshop february 2015
 
Apache hadoop, hdfs and map reduce Overview
Apache hadoop, hdfs and map reduce OverviewApache hadoop, hdfs and map reduce Overview
Apache hadoop, hdfs and map reduce Overview
 
Big data
Big dataBig data
Big data
 
Big data
Big dataBig data
Big data
 
Big Data Developers Moscow Meetup 1 - sql on hadoop
Big Data Developers Moscow Meetup 1  - sql on hadoopBig Data Developers Moscow Meetup 1  - sql on hadoop
Big Data Developers Moscow Meetup 1 - sql on hadoop
 
02 Hadoop.pptx HADOOP VENNELA DONTHIREDDY
02 Hadoop.pptx HADOOP VENNELA DONTHIREDDY02 Hadoop.pptx HADOOP VENNELA DONTHIREDDY
02 Hadoop.pptx HADOOP VENNELA DONTHIREDDY
 
Apache Spark
Apache SparkApache Spark
Apache Spark
 
Introduction to Hadoop and Big Data
Introduction to Hadoop and Big DataIntroduction to Hadoop and Big Data
Introduction to Hadoop and Big Data
 
Hadoop
HadoopHadoop
Hadoop
 
Big data applications
Big data applicationsBig data applications
Big data applications
 
Big Data and Hadoop
Big Data and HadoopBig Data and Hadoop
Big Data and Hadoop
 
Lecture 2 part 1
Lecture 2 part 1Lecture 2 part 1
Lecture 2 part 1
 
4. hadoop גיא לבנברג
4. hadoop  גיא לבנברג4. hadoop  גיא לבנברג
4. hadoop גיא לבנברג
 
Introduction to Hadoop
Introduction to HadoopIntroduction to Hadoop
Introduction to Hadoop
 

Último

Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Onlineanilsa9823
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxolyaivanovalion
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023ymrp368
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 

Último (20)

Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Chinhat Lucknow best sexual service Online
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptx
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 

Hadoop-Quick introduction

  • 1. “Data is a precious things and will last longer than the system themselves” – Tim Berners Lee
  • 3. What is Data ? • What is Data ? • And why should we care about it ?
  • 4. What is Big Data ? • Big data is a collection of data sets so large and complex that it becomes difficult to process using traditional data processing applications.
  • 5. Few Examples • Web logs • RFID • Social Data-Facebook, Linkedin, Twitter. • Call Detail Records • Large-Scale e-commerce • Medical Records • Video archives • Atmospheric Science • Astronomy • Feeds • Media & Advertising.
  • 6. What is Big Data ? • Ancestry.com stores around 2.5 petabytes of Data. • The New York Stock Exchange generates about one terabyte of new trade data per day. • The Internet Archive stores around 2 petabytes of data, and is growing at a rate of 20 terabytes per month. (http://archive.org/web/web.php)
  • 7. How to Process The Big Data? • Need to process large datasets (>100TB) • Only reading 100TB of data can be overwhelming • Takes ~11 days to read on a standard computer • Takes a day across a 10GB link (very high end storage solution) • On a single node (@50MB/s) – 23days • On a 1000 node cluster – 33min
  • 8. Not so easy……….. • The challenges are in search, sharing, transfer, visualization etc. • Moving data from storage cluster to computation cluster is not feasible. • In large cluster failure is expected . Computer fails everyday. • Very expensive to build reliability into each application. • massively parallel software running on tens, hundreds, or even thousands of servers • A programmer worries about errors, data motion, communication.
  • 9. What We are looking for.
  • 10. What we are looking for. • A common infrastructure and standard set of tools to handle this complexity. • A Efficient, Reliable fault-tolerant and usable framework.
  • 11. What is Hadoop ? • Its a framework that allows distributed processing of large data sets across clusters of computers. • It is designed to scale up from single servers to thousands of machines. • Its also designed to run on commodity hardware.
  • 12.  Scalable: store and process petabytes, scale by adding HW and added without needing to change data formats.  Economical: 1000s of commodity machines.  Efficient: runs tasks where data is located.  Flexible: Hadoop is schema-less, and can absorb any type of data, structured or not, from any number of sources.  Fault tolerant: When you lose a node, the system redirects work to another location of the data and continues processing without missing a beat. Hadoop is….
  • 13. Hadoop is useful for……. • Batch Data Processing. • Log Processing. • Document Analysis & Indexing. • Text Mining. • Crawl Data Processing. • Highly parallel data intensive distributed applications.
  • 14. Use The Right Tool For The Right Job Hadoop:RDBMS When to use? • Write once read many times. • Structured or Not (Agility) • Batch Processing When to use? • Interactive Reporting (<1sec) • Multistep Transactions • Lots of Inserts/Updates/Deletes
  • 19. Hadoop Terminology……. Node 1 Node 2 . . Node 3 Rack 1 Node 1 Node 2 . . Node 3 Rack 2
  • 20. Hadoop Terminology……. Node 1 Node 2 . . Node 3 Rack 1 Node 1 Node 2 . . Node 3 Rack 2 Node 1 Node 2 . . Node 3 Rack 3
  • 21. Hadoop Terminology……. Node 1 Node 2 . . Node 3 Rack 1 Node 1 Node 2 . . Node 3 Rack 2 Node 1 Node 2 . . Node 3 Rack 3 Hadoop Cluster
  • 23. Hadoop Nodes……. • HDFS Nodes  NameNode (Master)  DataNode (Slaves)  Checkpoint Node  Secondary NameNode (deprecated)  Backup Node
  • 24. Hadoop Nodes……. • MapReduce nodes  JobTracker (Master)  TaskTracker (Slaves)
  • 26. Hadoop Nodes-NameNode • Manages the filesystem namespace and metadata • Replicate missing blocks • No data goes through the NameNode • NameNode mainly consists of:  fsimage: Contains a checkpoint copy of the metadata on disk  edit logs: Records all write operations, synchronizes with metadata in RAM after each write  In case of ‘power failure’ on NameNode Can recover using fsimage + edit logs
  • 27. Hadoop Nodes-CheckPoint Node • Periodically creates checkpoints of NameNode filesystem • The Checkpoint node should run on a different machine than the NameNode • Should have same storage requirements as NameNode • There can be many Checkpoint nodes per cluster
  • 28. Hadoop Nodes-BackUp Node • Difference with Checkpoint node is that it keeps and up- to-date copy of metadata in RAM • Same RAM requirements as NameNode • Can only have one Backup node per cluster
  • 29. Hadoop Nodes-Data Node Can be many per Hadoop cluster •Manages blocks with data and serves them to clients •Periodically reports to NameNode the list of blocks it stores •Use inexpensive commodity hardware for this node
  • 30. Hadoop Nodes-Job Tracker One per Hadoop cluster (Multiple namenode can be configured in Hadoop 2.2 or letter version) •Receives job requests submitted by client •Schedules and monitors MapReduce jobs on task trackers
  • 31. Hadoop Nodes-Task Tracker • Can be many per Hadoop cluster • Executes MapReduce operations • Reads blocks from DataNodes
  • 32. Map Reduce It offers: • Operates on key and value pairs. • Two major functions: Map() and Reduce() • Input formats and splits • Number of tasks. • Provides status about jobs to users • Monitors task progress
  • 35. Map Reduce Job. JobTracker client TaskTackers & Datanodes ←4.tasks NameNode 3. Namespace info
  • 36. Input Output . The MapReduce framework operates on <key, value> pairs. It views the input to the job as a set of <key, value> pairs and produces a set of <key, value> pairs as the output of the job.
  • 37. Input Output.. Input and Output types of a MapReduce job: (input) <k1, v1> -> map -> <k2, v2> -> combine -> <k2, v2> -> reduce -> <k3, v3> (output) Reference: http://hadoop.apache.org/docs/r1.0.4/mapred_tutorial.html
  • 39. Hadoop Tools……. Hive  It’s a data warehouse system for Hadoop  Providing data summarization, query, and analysis.
  • 40. Hadoop Tools……. • Pig  Its a high-level platform for creating MapReduce programs used with Hadoop.  Developed by Yahoo.
  • 41. Hadoop Tools……. Hbase  Used when needs random, real-time read/write access to your Big Data.  Also used for storing historical data.
  • 42. Hadoop Tools……. • Hue  Its a Web application for interacting with Apache Hadoop. It supports a file browser, job tracker interface, Hive, Pig and more.
  • 43. Hadoop Tools……. • Sqoop  Its a Command-line interface application for transferring data between relational databases and Hadoop.  Microsoft uses a Sqoop-based connector to help transfer data from Microsoft SQL Server databases to Hadoop.
  • 44. Hadoop Tools……. • Flume  Its used for efficiently collecting, aggregating, and moving large amounts of distributed data or log data.
  • 46. Hadoop in the Enterprise…….
  • 47. There are many tools developed on top of hadoop these days and those are available in market and being used widely in industry. We can get more on it from Cloudera, hortonworks and from Google.com
  • 48. Thanks for your time today.