我有一个简单的map reduce作业,我正在构建反向索引。
我的映射器工作正常(我检查过)并输出密钥对word和docID:TFIDF值:
Mapper(仅显示输出):
context.write(new IntWritable(wordIndex), new Text(index + ":" + tfidf));
减速机的唯一工作就是结合这些值。这是我的实施:
public static class IndexerReducer extends Reducer<Text, IntWritable, IntWritable, Text>
{
public void reduce(IntWritable key, Iterable<Text> values, Context context) throws IOException, InterruptedException
{
StringBuilder sb = new StringBuilder();
for (Text value : values)
{
sb.append(value.toString() + " ");
}
context.write(key, new Text(sb.toString()));
}
}
但是,它没有组合任何东西,输出看起来与映射器的形式基本相同。虽然减速器应该将它们组合在一起,但是输出中的行有相同的键 - 输出文件中的所有键在使用reducer时都应该是唯一的,对吗?
这是我的reducer输出的样子示例(注意这是简化示例):
1 15:2.1
1 13:4.3
2 9:9.3
2 43:7.9
etc
我期待这个:
1 15:2.1 13:4.3
2 9:9.3 43:7.9
为了完整起见,我包括了run方法:
@Override
public int run(String[] arguments) throws Exception {
ArgumentParser parser = new ArgumentParser("TextPreprocessor");
parser.addArgument("input", true, true, "specify input directory");
parser.addArgument("output", true, true, "specify output directory");
parser.parseAndCheck(arguments);
Path inputPath = new Path(parser.getString("input"));
Path outputDir = new Path(parser.getString("output"));
// Create configuration.
Configuration conf = getConf();
// add distributed file with vocabulary
DistributedCache
.addCacheFile(new URI("/user/myslima3/vocab.txt"), conf);
// Create job.
Job job = new Job(conf, "WordCount");
job.setJarByClass(IndexerMapper.class);
// Setup MapReduce.
job.setMapperClass(IndexerMapper.class);
job.setReducerClass(IndexerReducer.class);
// Sort the output words in reversed order.
job.setSortComparatorClass(WordCountComparator.class);
job.setNumReduceTasks(1);
// Specify (key, value).
job.setMapOutputKeyClass(IntWritable.class);
job.setMapOutputValueClass(Text.class);
job.setOutputKeyClass(IntWritable.class);
job.setOutputValueClass(Text.class);
// Input.
FileInputFormat.addInputPath(job, inputPath);
job.setInputFormatClass(TextInputFormat.class);
// Output.
FileOutputFormat.setOutputPath(job, outputDir);
job.setOutputFormatClass(TextOutputFormat.class);
FileSystem hdfs = FileSystem.get(conf);
// Delete output directory (if exists).
if (hdfs.exists(outputDir))
hdfs.delete(outputDir, true);
// Execute the job.
return job.waitForCompletion(true) ? 0 : 1;
}
我会很高兴有关于发生了什么的暗示。我是新来的地图减少。感谢您的任何调试技巧!
答案 0 :(得分:3)
始终使用@Override
注释。
您已定义
public static class IndexerReducer extends Reducer<Text, IntWritable, IntWritable, Text>
然后你的reduce方法必须看起来像
@Override
public void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException
答案 1 :(得分:0)
@context不是org.apache.hadoop.mapreduce.Reducer.Context类型。 我们的Reducer有我们自己的Inner Class类型的Context。 所以不要使用“org.apache.hadoop.mapreduce.Reducer.Context”,只需使用“Context” 这将确保可以添加@Override以减少功能而不会出错。