Class | Description |
---|---|
RegexLineRecordReader |
RegexLineRecordReader: Read a file, one line at a time, and split it into fields using a regex.
|
RegexSequenceRecordReader |
RegexSequenceRecordReader: Read an entire file (as a sequence), one line at a time and
split each line into fields using a regex.
|
Enum | Description |
---|---|
RegexSequenceRecordReader.LineErrorHandling |
Error handling mode: How should invalid lines (i.e., those that don't match the provided regex) be handled?
FailOnInvalid: Throw an IllegalStateException when an invalid line is found SkipInvalid: Skip invalid lines (quietly, with no warning) SkipInvalidWithWarning: Skip invalid lines, but log a warning |