InputFormat inputFormat = new TupleTextInputFormat(schema, false, false, ',', '"', '\\',
FieldSelector.NONE, TupleTextInputFormat.NO_NULL_STRING);
OutputFormat outputFormat = new TupleTextOutputFormat(schema, false, ',', '"', '\\');
builder.addInput(inPath, inputFormat, new IdentityTupleMapper());
builder.setTupleReducer(new IdentityTupleReducer());
builder.setOutput(outPath, outputFormat, ITuple.class, NullWritable.class);
try {
Job job = builder.createJob();
assertRun(job);
} finally {