InterviewSolution
Saved Bookmarks
| 1. |
reduceProgress() gets the progress of the job’s reduce-tasks, as a float between _________(a) 0.0-1.0(b) 1.0-2.0(c) 2.0-3.0(d) None of the mentionedI had been asked this question in exam.This intriguing question originated from MapReduce Job topic in division Working of MapReduce of Hadoop |
|
Answer» CORRECT option is (a) 0.0-1.0 Explanation: mapProgress() is used to GET the progress of the JOB’s map-tasks, as a float between 0.0 and 1.0. |
|