InterviewSolution
Saved Bookmarks
| 1. |
_________ is the default Partitioner for partitioning key space.(a) HashPar(b) Partitioner(c) HashPartitioner(d) None of the mentionedI had been asked this question in an interview for internship.I want to ask this question from Introduction to Mapreduce in chapter Mapreduce of Hadoop |
|
Answer» RIGHT option is (c) HashPartitioner The explanation is: The default partitioner in Hadoop is the HashPartitioner which has a method CALLED getPartition to PARTITION. |
|