I have a file where every line is a record separated by a tab. So a tab delimited file.
However as I read this file in using TextIO.read().from(filename) and pass the results to a pardo, the elements are random chunks of the records. I expected the element to be the entire line of text which then I'll do parsing on from there. This file is processed in a python pipeline with ReadFromText perfectly fine. Just curious what would cause this on the Java side? Thanks, Shannon
