I need to implement a custom (service) input source for a Hadoop MapReduce app. I google'd and SO'd and found that one way to proceed is to implement a custom InputFormat. Is that correct?
Apparently according to http://hadoop.apache.org/common/docs/r0.20.2/api/org/apache/hadoop/mapred/InputFormat.html InputFormat's methods getRecordReader() and getSplits() are deprecated. What's the replacement?
Hadoop's WordCount example still uses the same...
0.20.2(the latest stable release) is it explicitly deprecates functionality without intra-version replacement. Such is the case withMultipleOutputsand nearly the entirety oforg.apache.hadoop.mapred. This seems to indicate a major restructuring of the API, which I've been following. (Answer forthcoming, once I compile enough source information.) – MrGomez Dec 8 '10 at 5:01