我的减速机的输出键类型可以与输入不同吗?

时间:2012-10-02 05:35:48

标签: mapreduce text-formatting reducers

实际上我的reducer的关键是自定义键(word1,word2),我想写输出,格式如“word1 \ tword2”。我无法做到这一点。

任何帮助表示感谢。

感谢。

编辑:对之间已经有了......我没注意到它!

1 个答案:

答案 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);
}