BasicTableOutputFormat.setStorageHint(job, "[word];[count]");
BasicTableOutputFormat.setSortInfo(job, sortKey);
System.out.println("in runMR, sortkey: " + sortKey);
// set map-only job.
job.setNumReduceTasks(1);
job.submit();
job.waitForCompletion( true );
BasicTableOutputFormat.close( job );
}
public int run (String[] args) throws Exception {