InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the default Partitioner for Mapreduce?(a) MergePartitioner(b) HashedPartitioner(c) HashPartitioner(d) None of the mentionedI got this question by my school teacher while I was bunking the class.The origin of the question is MapReduce Features topic in division Developing a MapReduce Application of Hadoop |
|
Answer» RIGHT answer is (C) HashPartitioner Easiest explanation: The total number of partitions is the same as the number of reduce TASKS for the JOB. |
|