How Mapreduce Works

本文详细解析了Hadoop中作业调度与任务执行的流程,从创建JobClient实例到任务分配,再到任务执行及失败处理,全面介绍了Hadoop作业管理的核心机制。


As shown in this figure, the user first call the runJob() method on the JobClient to create Joblient instance and then calls submitJob(). Then the jobclient would ask the jobtracker for a new JOb ID. the Jobtracker will run a counple of checks of the submitted job, for exaple, the input splites of the job. After the checks are successful,  it copies all the resources to the jobstraker's filesystem ina directory named after the jobID. Then the jobtracker will call submitJob(). Then the job is putinto a internal queue from where the job scheduler will pick up and initilize it.  The initialization of a job include a creating an object to represent the job being run. It also create a list of takes to run, this is done by estimate how many tasks are there.
Tasktrackers has a fixed number of slots for tasks, the jobs will first fill out all the map tasks and then the reduce tasks.
After tasktracker is assigned with a task, it will first retrieve the information from the file system, and then use a taskrunner class to run the task, the taskrunner would launches a new Java Virtual Machine.



Failuers
Task Failure(user program bug and so on, it tells the tasktracker, tasktraker free up the slot and run something else)
Shuffle and Sort
The process to sort all the output of


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值