I'm parsing a 20Gb file and outputting lines that meet a certain condition to another file, however occasionally python will read in 2 lines at once and concatenate them.
inputFileHandle = open(inputFileName, 'r')
row = 0
for line in inputFileHandle:
row = row + 1
if line_meets_condition:
outputFileHandle.write(line)
else:
lstIgnoredRows.append(row)
I've checked the line endings in the source file and they check out as line feeds (ascii char 10). Pulling out the problem rows and parsing them in isolation works as expected. Am I hitting some python limitation here? The position in the file of the first anomaly is around the 4GB mark.
lstIgnoredRowsa list, how big does that grow? I wonder what would happen if you just saved the lines you are interested in the output file and didn't do anything with the lines you wanted to ignore. – Levon Apr 19 '12 at 2:41lstIgnoredRowsmay become problematic when you've got 20Gb of data. Why not write the ignored row numbers to another files? – Hooked Apr 19 '12 at 2:48