what is JobTracker in Hadoop? What are the actions followed by Hadoop?



what is JobTracker in Hadoop? What are the actions followed by Hadoop?..

Answer / Purnendu Kumar Shukla

JobTracker is the central management service in Hadoop that coordinates all the tasks in a MapReduce job. It assigns tasks to nodes in the cluster, monitors their progress, and handles failures if they occur. The actions followed by Hadoop are:
1. Map: Each input record is processed by a mapper, which produces key-value pairs.
2. Shuffle: The output of each mapper is sorted and shuffled to the reducers based on their keys.
3. Reduce: Each reducer processes the data associated with a specific key and produces the final output.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MapReduce Interview Questions

What is an identity mapper and identity reducer?

1 Answers  


What happen if the number of the reducer is 0 in MapReduce?

1 Answers  


Why Mapper runs in heavy weight process and not in a thread in MapReduce?

1 Answers  


what is JobTracker in Hadoop? What are the actions followed by Hadoop?

1 Answers  


Explain the differences between a combiner and reducer

1 Answers  


What is the relation between MapReduce and Hive?

1 Answers  


In Map Reduce why map write output to Local Disk instead of HDFS?

1 Answers  


What is the difference between a MapReduce InputSplit and HDFS block?

1 Answers  


how is data partitioned before it is sent to the reducer if no custom partitioner is defined in Hadoop?

1 Answers  


what is WebDAV in Hadoop?

1 Answers  


What is the difference between Job and Task in MapReduce?

1 Answers  


Where is the output of Mapper written in Hadoop?

1 Answers  


Categories