实际上我的reducer的关键是自定义键(word1,word2),我想写输出,格式如“word1 \ tword2”。我无法做到这一点。
任何帮助表示感谢。
感谢。
编辑:对之间已经有了......我没注意到它!答案 0 :(得分:0)
你得到了什么错误 试试这个
public void reduce(Text key, Iterable<IntWritable> values,Context context)
throws IOException, InterruptedException {
CustomKey customkey = (CustomKey) key;
context.write(new Text(customkey.word1+"/"+customkey.word2), result);
}