InterviewSolution
Saved Bookmarks
| 1. |
______________ class allows the Map/Reduce framework to partition the map outputs based on certain key fields, not the whole keys.(a) KeyFieldPartitioner(b) KeyFieldBasedPartitioner(c) KeyFieldBased(d) None of the mentioned |
|
Answer» Right choice is (b) KeyFieldBasedPartitioner For explanation I would say: The primary key is used for partitioning, and the combination of the primary and secondary keys is used for sorting. |
|