InterviewSolution
Saved Bookmarks
| 1. |
The _________ as just the value field append(value) and the key is a LongWritable that contains the record number, count + 1.(a) SetFile(b) ArrayFile(c) BloomMapFile(d) None of the mentioned |
|
Answer» The correct option is (b) ArrayFile To explain: The SetFile instead of append(key, value) as just the key field append(key) and the value is always the NullWritable instance. |
|