| | 39 | * Reference: |
| | 40 | * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/FileInputFormat.html |
| | 41 | * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/TextInputFormat.html |
| | 42 | {{{ |
| | 43 | #!text |
| | 44 | public class TextInputFormat |
| | 45 | extends FileInputFormat<LongWritable,Text> |
| | 46 | }}} |
| | 47 | * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/KeyValueTextInputFormat.html |
| | 48 | {{{ |
| | 49 | #!text |
| | 50 | public class KeyValueTextInputFormat |
| | 51 | extends FileInputFormat<Text,Text> |
| | 52 | }}} |
| | 53 | * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/NLineInputFormat.html |
| | 54 | {{{ |
| | 55 | #!text |
| | 56 | public class NLineInputFormat |
| | 57 | extends FileInputFormat<LongWritable,Text> |
| | 58 | |
| | 59 | NLineInputFormat which splits N lines of input as one split. |
| | 60 | }}} |