我的问题可能已经被问过了,但我找不到我的问题的明确答案。
我的 MapReduce 是一个基本的 WordCount。我当前的输出文件是:
// filename : 'part-r-00000'
789 a
755 #c
456 d
123 #b
如何更改输出文件名?
然后,是否有可能有 2 个输出文件:
// First output file
789 a
456 d
// Second output file
123 #b
755 #c
这是我的减少类:
public static class SortReducer extends Reducer<IntWritable, Text, IntWritable, Text> {
public void reduce(IntWritable key, Text value, Context context) throws IOException, InterruptedException {
context.write(key, value);
}
}
这是我的分区程序类:
public class TweetPartitionner extends Partitioner<Text, IntWritable>{
@Override
public int getPartition(Text a_key, IntWritable a_value, int a_nbPartitions) {
if(a_key.toString().startsWith("#"))
return 1;
return 0;
}
}
非常感谢 !