In Hadoop where does the framework save the output of the Map task in a normal Map-Reduce Application?
问题 I am trying to find out where does the output of a Map task is saved to disk before it can be used by a Reduce task. Note: - version used is Hadoop 0.20.204 with the new API For example, when overwriting the map method in the Map class: public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException { String line = value.toString(); StringTokenizer tokenizer = new StringTokenizer(line); while (tokenizer.hasMoreTokens()) { word.set(tokenizer.nextToken())