DataInput and custom record delimiter


1 Answer(s)


By Default the InputFormat, FileInputFormat and in specific RecordReader() deals with splitting of lines based on the specific InputFormat(s), Which can be customized or use a specific option to use different delimiters. Example: mapred.textinputformat.seperator() for TextInputFormat.

Thanks