InterviewSolution
Saved Bookmarks
| 1. |
Point out the wrong statement.(a) A MapReduce job usually splits the input data-set into independent chunks which are processed by the map tasks in a completely parallel manner(b) The MapReduce framework operates exclusively on pairs(c) Applications typically implement the Mapper and Reducer interfaces to provide the map and reduce methods(d) None of the mentionedI have been asked this question at a job interview.I would like to ask this question from Introduction to Mapreduce in section Mapreduce of Hadoop |
|
Answer» RIGHT answer is (d) NONE of the mentioned Explanation: The MapReduce FRAMEWORK takes care of SCHEDULING tasks, monitoring them and re-executes the failed tasks. |
|