InterviewSolution
Saved Bookmarks
| 1. |
__________ is a variant of SequenceFileInputFormat that converts the sequence file’s keys and values to Text objects.(a) SequenceFile(b) SequenceFileAsTextInputFormat(c) SequenceAsTextInputFormat(d) All of the mentioned |
|
Answer» Correct choice is (b) SequenceFileAsTextInputFormat Best explanation: With multiple reducers, records will be allocated evenly across reduce tasks, with all records that share the same key being processed by the same reduce task. |
|