InterviewSolution
Saved Bookmarks
| 1. |
Mapper implementations are passed the JobConf for the job via the ________ method.(a) JobConfigure.configure(b) JobConfigurable.configure(c) JobConfigurable.configurable(d) None of the mentionedI had been asked this question in an internship interview.Question is from Analyzing Data with Hadoop topic in portion Mapreduce of Hadoop |
|
Answer» CORRECT CHOICE is (B) JobConfigurable.configure Easiest explanation: JobConfigurable.configure method is overridden to INITIALIZE themselves. |
|