Hadoop - Performance Tuning
Given this Hadoop MapReduce snippet to merge small files, what will be the output format of the job?
job.setInputFormatClass(CombineFileInputFormat.class); job.setOutputFormatClass(SequenceFileOutputFormat.class);
