InterviewSolution
Saved Bookmarks
| 1. |
On a tasktracker, the map task passes the split to the createRecordReader() method on InputFormat to obtain a _________ for that split.(a) InputReader(b) RecordReader(c) OutputReader(d) None of the mentionedThe question was asked during an online exam.I want to ask this question from Data Flow in section HDFS – Hadoop Distributed File System of Hadoop |
|
Answer» RIGHT choice is (b) RecordReader To explain I would say: The RecordReader LOADS data from its SOURCE and CONVERTS into key-value pairs suitable for reading by mapper. |
|