SlideShare une entreprise Scribd logo
1  sur  15
M
KU

AR

A
OM
.C
ND
OO
NA
H
A
YA
SH
K@
JE
90
RA
12
H_
ES
AJ
R

IC OP
S S DO
LA A
C H
F IN
O
Y CE
OM DU
AT RE
AN AP
M
FIRST A JOB HAS TO BE SUBMITTED TO HADOOP
CLUSTER. LET’S SEE HOW JOB SUBMISSION
HAPPENS IN HADOOP.
MR Program

Job

JobTracker
getNewJobId()
submitJob()

submit()
JobSubmitter
submitJobInternal()
Client JVM

Job Tracker JVM

HDFS

Job Jar
Configuration Files
Computed Input Splits
Folder in name of Job ID

•
•
•

•

Client calls the submit() (or waitForCompletion()) method on Job.
Job creates a new instance of JobSubmitter which has a method called ‘submitJobInternal()’.
Then the Job.submit() method calls JobSubmitter.submitJobInternal() method which does the
following;
• Invokes the JobTracker.getNewJobId() to generate a unique id for the job.
• Checks the output specification. If output path is not specified or if it already exists, then an
exception is thrown.
• Checks the input specification. In case of invalid input path or if splits couldn’t be computed,
then an exception is thrown. Else, the input splits are computed.
• Creates a directory in the name of Job Id in HDFS.
• Copies Job jar, configuration files and computed input splits to this directory. The Job jar has
high replication factor which is configured in ‘mapred.submit.replication’ property.
• Informs the JobTracker that the job is ready to be executed by calling submitJob() on
JobTracker.
Instead of Job.submit() the MapReduce program can call Job.waitForCompletion() method.
Difference here is, the later waits till the job is complete by polling the JobTracker for every
second. Once the job is completed successfully, counters are displayed in console. In case of job
failure, the exception is displayed in console. But the submit() method terminates once the job
submission is done.
NEXT THE SUBMITTED JOB WILL BE INITIALIZED.
NOW LET’S SEE HOW JOB INITIALIZATION
HAPPENS IN HADOOP.
JobTracker
submitJob()

Job Scheduler

Map Tasks

Reduce Tasks

Other Tasks
JS

T
1

J1

HDFS

S
1

S
2

S
3

T
2

T
3

JC

T
1

Bookkeeping Info

Input Splits stored in Job ID
directory in HDFS.

•
•
•
•
•
•
•
•

When JobTracker.submitJob() is called, JobTracker adds a token to an internal queue.
A job scheduler picks it up and creates an object representation for the job. This representation
encapsulates tasks & bookkeeping infos (to track the status & progress of job’s tasks).
Job scheduler then reads the input splits from HDFS.
Then the scheduler creates one map task for each input split.
‘mapred.reduce.tasks’ property is meant to have an integer. Job scheduler reads this property and
creates those many number of reduce tasks. Let’s assume the property’s value was 1.
Job setup (JS) & Job cleanup (JC) are the other 2 tasks created. Job setup task is run before any
map task and Job cleanup task is run after all reduce tasks are complete.
Each job has an OutputCommitter (a Java Interface) associated with it. Default implementation is
FileOutputCommitter. The OutputCommitter defines what setup and cleanup task (for job & task)
should do.
In case of FileOutputCommitter, the job setup task will create the final output directory for the job
and temp working space for task output. For cleanup task, it deletes the temp working space for
task output. Please refer the API document for more info.
INITIALIZED JOB IS SPLIT INTO TASKS AND JOB
TRACKER ASSIGNS TASKS TO TASK TRACKER.
NOW LET’S SEE HOW TASK ASSIGNMENT
HAPPENS IN HADOOP.
J3

J2

J1

Job Tracker internal queue.

Job Tracker

JT allocates a map or reduce
tasks to TT as heartbeat return
value.

TT sends a heartbeat call to JT
with task status, empty slots.

Task Tracker
Map Slots

•
•

•
•
•

Reduce Slots

Based on factors like available memory, available cores, etc., fixed number of map and reduce
slots are configured in a Task Tracker.
When Task Tracker is up and running, it sends a heartbeat call (for every 5 seconds) to Job
Tracker. This is a two way communication between Task Tracker & Job Tracker. Task Tracker uses
this call to inform Job Tracker that its alive. Also Task Tracker uses this call to inform Job Tracker
about the status of tasks and which all map & reduce slots are available.
Job Tracker might have many jobs in queue to run. It uses one of the scheduling algorithms to pick
a job from queue. Once a job is picked, its associated tasks will be picked.
When Job Tracker finds that there are empty slots (from the heartbeat call), it allocates tasks to
Task Tracker using the heartbeat return value.
Job Tracker considers the data locality when allocating map tasks; i.e., Job Tracker tries to
allocate the map job to a Task Tracker where the block is available (which is called data local). If
its not possible, Job Tracker tries to allocate the map task to a map slot in same rack (which is
called rack local). There are no such considerations for reduce task.
NOW TASKS ARE ASSIGNED TO TASK TRACKER
WHICH FOLLOWS A SERIES OF STEPS TO
EXECUTE A TASK. LET’S SEE HOW TASKS ARE
EXECUTED IN TASK TRACKER.
Distributed Cache

Task Tracker

Un-jar the job jar contents
Folder created in TT’s local.

TaskRunner
HDFS

Child Process
Map / Reduce Task
Child JVM

•
•
•
•
•
•
•
•

Now the Task Tracker has been assigned a task.
Task Tracker copies the job jar from HDFS to task tracker’s file system. Also it copies required files
from Distributed Cache.
Task Tracker creates a new folder in task tracker’s file system.
Job jar content is un-jared into the new folder.
Creates a new instance of TaskRunner.
TaskRunner launches a new JVM to run each task, so that any bug in the user-defined map &
reduce functions don’t affect the Task Tracker.
The child process communicates with its parent through the umbilical interface. It informs the
parent of the task’s progress every few seconds until the task is complete.
There is a setup and cleanup tasks executed in the same JVM where the task is executed. The
OutputCommiter implementation associated with the job determines what action to be taken
during startup and cleanup.
SINCE TASKS ARE EXECUTED IN A DISTRIBUTED
ENVIRONMENT, TRACKING THE PROGRESS AND
STATUS OF JOB IS TRICKY. LET’S SEE HOW
PROGRESS AND STATUS UPDATES ARE TAKEN
CARE IN HADOOP.
•

MapReduce jobs are long running batch job which takes anything from one minute to hours to run.
Because of this user has to get feedback on how job is processing.

•

Each job and task have status which comprises of the following;
Status of Job
or Task

Progress of
map & reduce

Value of job
counters

Status
description

Job/Task Status

•

Status of Job/Task: Possible values are RUNNING, SUCCESSFULLY COMPLETED and FAILED. Job
tracker and Task trackers set the value as the job or task progresses.

•

Each task tracks the program by tracking the proportion of the task completed.
• Map task’s progress is measured by the proportion of input processed so far.
• Measuring Reduce task’s progress is little tricky. The system does it by dividing the total
progress into 3 parts corresponding to 3 phases of Shuffle.
MR Program

Job

getStatus()

Job: SFO Crime
Job Status: Running
Task & task status

JobTracker
Task Tracker
Bytes Written: 29
Bytes Read: 29
…
…

Map / Reduce Task

Framework defined counters

Map output records: 5
Number of crimes: 10

User defined counters

Child JVM

•
•
•
•
•
•
•
•

Each task has set of counters that count various events as the task runs.
Most of these counters are build into the framework. We can define our own counters. These are
called user defined counters.
As the tasks progress, it sets a flag to indicate that its time to send the progress to Task Tracker.
This flag is checked every second by a thread and notifies the Task Tracker.
For every 5 seconds, the Task Tracker sends a heart beat to Job Tracker. The status of all tasks
are sent to Job tracker along with the heartbeat call.
Counters are sent less frequently than every 5 seconds because they can be relatively highbandwidth.
Job Tracker combines these updates to produce a global view of the status of all the jobs & its
related tasks.
Clients invoke the API Job.getStatus() for every second to get the status from Job Tracker.
THIS EXECUTION PROCESS CONTINUES TILL ALL
THE TASKS ARE COMPLETED. ONCE THE LAST
TASK IS COMPLETED, MR FRAMEWORK ENTERS
THE LAST PHASE CALLED JOB COMPLETION.
•

When Job Tracker receives a notification from the last task that it is complete, it changes the job
status to “successfully completed”.

•

When the Job polls the status, it will get to know that the job is completed. So it prints the
counters and other job statistics on console.

•

If the property ‘job.end.notification.url’ is set, the Job Tracker will send a HTTP job notification to
the client.

•

Job Tracker cleans up its working state for the job and instructs the Task Trackers to do the same.
THE END

SORRY FOR MY POOR ENGLISH. 
PLEASE SEND YOUR VALUABLE FEEDBACK TO
RAJESH_1290K@YAHOO.COM

Contenu connexe

Tendances (20)

8. mutual exclusion in Distributed Operating Systems
8. mutual exclusion in Distributed Operating Systems8. mutual exclusion in Distributed Operating Systems
8. mutual exclusion in Distributed Operating Systems
 
Hadoop Architecture
Hadoop ArchitectureHadoop Architecture
Hadoop Architecture
 
Aca2 01 new
Aca2 01 newAca2 01 new
Aca2 01 new
 
Ontology engineering
Ontology engineering Ontology engineering
Ontology engineering
 
Introduction to Hadoop
Introduction to HadoopIntroduction to Hadoop
Introduction to Hadoop
 
Mapreduce by examples
Mapreduce by examplesMapreduce by examples
Mapreduce by examples
 
Map Reduce
Map ReduceMap Reduce
Map Reduce
 
Assignment problem branch and bound.pptx
Assignment problem branch and bound.pptxAssignment problem branch and bound.pptx
Assignment problem branch and bound.pptx
 
Distributed systems scheduling
Distributed systems schedulingDistributed systems scheduling
Distributed systems scheduling
 
1.2 steps and functionalities
1.2 steps and functionalities1.2 steps and functionalities
1.2 steps and functionalities
 
Introduction to Hadoop Administration
Introduction to Hadoop AdministrationIntroduction to Hadoop Administration
Introduction to Hadoop Administration
 
Yarn.ppt
Yarn.pptYarn.ppt
Yarn.ppt
 
Hadoop YARN
Hadoop YARNHadoop YARN
Hadoop YARN
 
Bankers algorithm
Bankers algorithmBankers algorithm
Bankers algorithm
 
Testing Hadoop jobs with MRUnit
Testing Hadoop jobs with MRUnitTesting Hadoop jobs with MRUnit
Testing Hadoop jobs with MRUnit
 
Problem reduction AND OR GRAPH & AO* algorithm.ppt
Problem reduction AND OR GRAPH & AO* algorithm.pptProblem reduction AND OR GRAPH & AO* algorithm.ppt
Problem reduction AND OR GRAPH & AO* algorithm.ppt
 
Introduction to Parallel Computing
Introduction to Parallel ComputingIntroduction to Parallel Computing
Introduction to Parallel Computing
 
Tree pruning
 Tree pruning Tree pruning
Tree pruning
 
Deadlock Detection in Distributed Systems
Deadlock Detection in Distributed SystemsDeadlock Detection in Distributed Systems
Deadlock Detection in Distributed Systems
 
Association rule mining
Association rule miningAssociation rule mining
Association rule mining
 

En vedette

Hadoop MapReduce Fundamentals
Hadoop MapReduce FundamentalsHadoop MapReduce Fundamentals
Hadoop MapReduce FundamentalsLynn Langit
 
Tuple map reduce: beyond classic mapreduce
Tuple map reduce: beyond classic mapreduceTuple map reduce: beyond classic mapreduce
Tuple map reduce: beyond classic mapreducedatasalt
 
Introduction to YARN and MapReduce 2
Introduction to YARN and MapReduce 2Introduction to YARN and MapReduce 2
Introduction to YARN and MapReduce 2Cloudera, Inc.
 

En vedette (6)

Anatomy of Hadoop YARN
Anatomy of Hadoop YARNAnatomy of Hadoop YARN
Anatomy of Hadoop YARN
 
Anatomy of file read in hadoop
Anatomy of file read in hadoopAnatomy of file read in hadoop
Anatomy of file read in hadoop
 
Anatomy of file write in hadoop
Anatomy of file write in hadoopAnatomy of file write in hadoop
Anatomy of file write in hadoop
 
Hadoop MapReduce Fundamentals
Hadoop MapReduce FundamentalsHadoop MapReduce Fundamentals
Hadoop MapReduce Fundamentals
 
Tuple map reduce: beyond classic mapreduce
Tuple map reduce: beyond classic mapreduceTuple map reduce: beyond classic mapreduce
Tuple map reduce: beyond classic mapreduce
 
Introduction to YARN and MapReduce 2
Introduction to YARN and MapReduce 2Introduction to YARN and MapReduce 2
Introduction to YARN and MapReduce 2
 

Similaire à MapReduce Job Execution Process Overview

MapReduce.pptx
MapReduce.pptxMapReduce.pptx
MapReduce.pptxSheba41
 
Big data unit iv and v lecture notes qb model exam
Big data unit iv and v lecture notes   qb model examBig data unit iv and v lecture notes   qb model exam
Big data unit iv and v lecture notes qb model examIndhujeni
 
Hadoop deconstructing map reduce job step by step
Hadoop deconstructing map reduce job step by stepHadoop deconstructing map reduce job step by step
Hadoop deconstructing map reduce job step by stepSubhas Kumar Ghosh
 
Hadoop map reduce in operation
Hadoop map reduce in operationHadoop map reduce in operation
Hadoop map reduce in operationSubhas Kumar Ghosh
 
Hadoop Map Reduce Arch
Hadoop Map Reduce ArchHadoop Map Reduce Arch
Hadoop Map Reduce Archnextlib
 
Hadoop institutes in Bangalore
Hadoop institutes in BangaloreHadoop institutes in Bangalore
Hadoop institutes in Bangaloresrikanthhadoop
 
Hadoop interview questions - Softwarequery.com
Hadoop interview questions - Softwarequery.comHadoop interview questions - Softwarequery.com
Hadoop interview questions - Softwarequery.comsoftwarequery
 
Decompose the monolith into AWS Step Functions
Decompose the monolith into AWS Step FunctionsDecompose the monolith into AWS Step Functions
Decompose the monolith into AWS Step FunctionsbeSharp
 

Similaire à MapReduce Job Execution Process Overview (20)

BIG DT.PPT_115432.pptx
BIG DT.PPT_115432.pptxBIG DT.PPT_115432.pptx
BIG DT.PPT_115432.pptx
 
MapReduce.pptx
MapReduce.pptxMapReduce.pptx
MapReduce.pptx
 
Big data unit iv and v lecture notes qb model exam
Big data unit iv and v lecture notes   qb model examBig data unit iv and v lecture notes   qb model exam
Big data unit iv and v lecture notes qb model exam
 
BIG DATA ANALYTICS
BIG DATA ANALYTICSBIG DATA ANALYTICS
BIG DATA ANALYTICS
 
Hadoop job chaining
Hadoop job chainingHadoop job chaining
Hadoop job chaining
 
Spring batch
Spring batchSpring batch
Spring batch
 
Hadoop deconstructing map reduce job step by step
Hadoop deconstructing map reduce job step by stepHadoop deconstructing map reduce job step by step
Hadoop deconstructing map reduce job step by step
 
Unit3 MapReduce
Unit3 MapReduceUnit3 MapReduce
Unit3 MapReduce
 
Hadoop map reduce in operation
Hadoop map reduce in operationHadoop map reduce in operation
Hadoop map reduce in operation
 
MapReduce
MapReduceMapReduce
MapReduce
 
Java Batch
Java BatchJava Batch
Java Batch
 
Hadoop Map Reduce Arch
Hadoop Map Reduce ArchHadoop Map Reduce Arch
Hadoop Map Reduce Arch
 
Hadoop Map Reduce Arch
Hadoop Map Reduce ArchHadoop Map Reduce Arch
Hadoop Map Reduce Arch
 
COScheduler
COSchedulerCOScheduler
COScheduler
 
Spring Batch 2.0
Spring Batch 2.0Spring Batch 2.0
Spring Batch 2.0
 
Hadoop institutes in Bangalore
Hadoop institutes in BangaloreHadoop institutes in Bangalore
Hadoop institutes in Bangalore
 
Second Level Cache in JPA Explained
Second Level Cache in JPA ExplainedSecond Level Cache in JPA Explained
Second Level Cache in JPA Explained
 
Hadoop interview questions - Softwarequery.com
Hadoop interview questions - Softwarequery.comHadoop interview questions - Softwarequery.com
Hadoop interview questions - Softwarequery.com
 
Decompose the monolith into AWS Step Functions
Decompose the monolith into AWS Step FunctionsDecompose the monolith into AWS Step Functions
Decompose the monolith into AWS Step Functions
 
Map reduce
Map reduceMap reduce
Map reduce
 

Dernier

Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 

Dernier (20)

Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 

MapReduce Job Execution Process Overview

  • 2. FIRST A JOB HAS TO BE SUBMITTED TO HADOOP CLUSTER. LET’S SEE HOW JOB SUBMISSION HAPPENS IN HADOOP.
  • 3. MR Program Job JobTracker getNewJobId() submitJob() submit() JobSubmitter submitJobInternal() Client JVM Job Tracker JVM HDFS Job Jar Configuration Files Computed Input Splits Folder in name of Job ID • • • • Client calls the submit() (or waitForCompletion()) method on Job. Job creates a new instance of JobSubmitter which has a method called ‘submitJobInternal()’. Then the Job.submit() method calls JobSubmitter.submitJobInternal() method which does the following; • Invokes the JobTracker.getNewJobId() to generate a unique id for the job. • Checks the output specification. If output path is not specified or if it already exists, then an exception is thrown. • Checks the input specification. In case of invalid input path or if splits couldn’t be computed, then an exception is thrown. Else, the input splits are computed. • Creates a directory in the name of Job Id in HDFS. • Copies Job jar, configuration files and computed input splits to this directory. The Job jar has high replication factor which is configured in ‘mapred.submit.replication’ property. • Informs the JobTracker that the job is ready to be executed by calling submitJob() on JobTracker. Instead of Job.submit() the MapReduce program can call Job.waitForCompletion() method. Difference here is, the later waits till the job is complete by polling the JobTracker for every second. Once the job is completed successfully, counters are displayed in console. In case of job failure, the exception is displayed in console. But the submit() method terminates once the job submission is done.
  • 4. NEXT THE SUBMITTED JOB WILL BE INITIALIZED. NOW LET’S SEE HOW JOB INITIALIZATION HAPPENS IN HADOOP.
  • 5. JobTracker submitJob() Job Scheduler Map Tasks Reduce Tasks Other Tasks JS T 1 J1 HDFS S 1 S 2 S 3 T 2 T 3 JC T 1 Bookkeeping Info Input Splits stored in Job ID directory in HDFS. • • • • • • • • When JobTracker.submitJob() is called, JobTracker adds a token to an internal queue. A job scheduler picks it up and creates an object representation for the job. This representation encapsulates tasks & bookkeeping infos (to track the status & progress of job’s tasks). Job scheduler then reads the input splits from HDFS. Then the scheduler creates one map task for each input split. ‘mapred.reduce.tasks’ property is meant to have an integer. Job scheduler reads this property and creates those many number of reduce tasks. Let’s assume the property’s value was 1. Job setup (JS) & Job cleanup (JC) are the other 2 tasks created. Job setup task is run before any map task and Job cleanup task is run after all reduce tasks are complete. Each job has an OutputCommitter (a Java Interface) associated with it. Default implementation is FileOutputCommitter. The OutputCommitter defines what setup and cleanup task (for job & task) should do. In case of FileOutputCommitter, the job setup task will create the final output directory for the job and temp working space for task output. For cleanup task, it deletes the temp working space for task output. Please refer the API document for more info.
  • 6. INITIALIZED JOB IS SPLIT INTO TASKS AND JOB TRACKER ASSIGNS TASKS TO TASK TRACKER. NOW LET’S SEE HOW TASK ASSIGNMENT HAPPENS IN HADOOP.
  • 7. J3 J2 J1 Job Tracker internal queue. Job Tracker JT allocates a map or reduce tasks to TT as heartbeat return value. TT sends a heartbeat call to JT with task status, empty slots. Task Tracker Map Slots • • • • • Reduce Slots Based on factors like available memory, available cores, etc., fixed number of map and reduce slots are configured in a Task Tracker. When Task Tracker is up and running, it sends a heartbeat call (for every 5 seconds) to Job Tracker. This is a two way communication between Task Tracker & Job Tracker. Task Tracker uses this call to inform Job Tracker that its alive. Also Task Tracker uses this call to inform Job Tracker about the status of tasks and which all map & reduce slots are available. Job Tracker might have many jobs in queue to run. It uses one of the scheduling algorithms to pick a job from queue. Once a job is picked, its associated tasks will be picked. When Job Tracker finds that there are empty slots (from the heartbeat call), it allocates tasks to Task Tracker using the heartbeat return value. Job Tracker considers the data locality when allocating map tasks; i.e., Job Tracker tries to allocate the map job to a Task Tracker where the block is available (which is called data local). If its not possible, Job Tracker tries to allocate the map task to a map slot in same rack (which is called rack local). There are no such considerations for reduce task.
  • 8. NOW TASKS ARE ASSIGNED TO TASK TRACKER WHICH FOLLOWS A SERIES OF STEPS TO EXECUTE A TASK. LET’S SEE HOW TASKS ARE EXECUTED IN TASK TRACKER.
  • 9. Distributed Cache Task Tracker Un-jar the job jar contents Folder created in TT’s local. TaskRunner HDFS Child Process Map / Reduce Task Child JVM • • • • • • • • Now the Task Tracker has been assigned a task. Task Tracker copies the job jar from HDFS to task tracker’s file system. Also it copies required files from Distributed Cache. Task Tracker creates a new folder in task tracker’s file system. Job jar content is un-jared into the new folder. Creates a new instance of TaskRunner. TaskRunner launches a new JVM to run each task, so that any bug in the user-defined map & reduce functions don’t affect the Task Tracker. The child process communicates with its parent through the umbilical interface. It informs the parent of the task’s progress every few seconds until the task is complete. There is a setup and cleanup tasks executed in the same JVM where the task is executed. The OutputCommiter implementation associated with the job determines what action to be taken during startup and cleanup.
  • 10. SINCE TASKS ARE EXECUTED IN A DISTRIBUTED ENVIRONMENT, TRACKING THE PROGRESS AND STATUS OF JOB IS TRICKY. LET’S SEE HOW PROGRESS AND STATUS UPDATES ARE TAKEN CARE IN HADOOP.
  • 11. • MapReduce jobs are long running batch job which takes anything from one minute to hours to run. Because of this user has to get feedback on how job is processing. • Each job and task have status which comprises of the following; Status of Job or Task Progress of map & reduce Value of job counters Status description Job/Task Status • Status of Job/Task: Possible values are RUNNING, SUCCESSFULLY COMPLETED and FAILED. Job tracker and Task trackers set the value as the job or task progresses. • Each task tracks the program by tracking the proportion of the task completed. • Map task’s progress is measured by the proportion of input processed so far. • Measuring Reduce task’s progress is little tricky. The system does it by dividing the total progress into 3 parts corresponding to 3 phases of Shuffle.
  • 12. MR Program Job getStatus() Job: SFO Crime Job Status: Running Task & task status JobTracker Task Tracker Bytes Written: 29 Bytes Read: 29 … … Map / Reduce Task Framework defined counters Map output records: 5 Number of crimes: 10 User defined counters Child JVM • • • • • • • • Each task has set of counters that count various events as the task runs. Most of these counters are build into the framework. We can define our own counters. These are called user defined counters. As the tasks progress, it sets a flag to indicate that its time to send the progress to Task Tracker. This flag is checked every second by a thread and notifies the Task Tracker. For every 5 seconds, the Task Tracker sends a heart beat to Job Tracker. The status of all tasks are sent to Job tracker along with the heartbeat call. Counters are sent less frequently than every 5 seconds because they can be relatively highbandwidth. Job Tracker combines these updates to produce a global view of the status of all the jobs & its related tasks. Clients invoke the API Job.getStatus() for every second to get the status from Job Tracker.
  • 13. THIS EXECUTION PROCESS CONTINUES TILL ALL THE TASKS ARE COMPLETED. ONCE THE LAST TASK IS COMPLETED, MR FRAMEWORK ENTERS THE LAST PHASE CALLED JOB COMPLETION.
  • 14. • When Job Tracker receives a notification from the last task that it is complete, it changes the job status to “successfully completed”. • When the Job polls the status, it will get to know that the job is completed. So it prints the counters and other job statistics on console. • If the property ‘job.end.notification.url’ is set, the Job Tracker will send a HTTP job notification to the client. • Job Tracker cleans up its working state for the job and instructs the Task Trackers to do the same.
  • 15. THE END SORRY FOR MY POOR ENGLISH.  PLEASE SEND YOUR VALUABLE FEEDBACK TO RAJESH_1290K@YAHOO.COM