示例代码在这里 http://wiki.apache.org/hadoop/WordCount
我理解逻辑,但是,我注意到在 main 函数中,它只指定了输入和输出路径,但是,它从未指定什么是键和值。
map 和 reduce 函数是如何解决这个问题的?
public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException
public void reduce(Text key, Iterable<IntWritable> values, Context context)