// 3/4 Tool to Hadoop
while (lineReader.readLine(line) > 0) {
answer = line.getBytes();
splitKeyVal(answer, line.getLength(), key, val);
output.collect(key, val);
line.clear();
numRecWritten_++;
long now = System.currentTimeMillis();
if (now-lastStdoutReport > reporterOutDelay_) {
lastStdoutReport = now;
String hline = "Records R/W=" + numRecRead_ + "/" + numRecWritten_;