我使用 hadoop 1.0.1 做一些项目,我想让我的输入 .txt 文件成为我需要的“键”和“值”,比如:
如果我有一个test.txt
文件并且文件内容是
1, 10 10
我想我可以使用 "KeyValueTextInputFormat" 并让 "," 成为分隔符,所以输入后,键是"1",值是"10 10"。
但是,我得到的结果是所有信息都是关键,值是空的。我不知道问题出在哪里。
请给我一些帮助,谢谢!
这是示例代码:
public class WordCount{
public class WordCountMapper extends Mapper<Text, Text, Text, Text>{
public void map(Text key, Text value, Context context) throws IOException, InterruptedException {
context.write(value, value);
context.write(key, key);
}
}
public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
conf.set("key.value.separator.in.input.line",",");
String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
if (otherArgs.length != 2) {
System.err.println("Usage: wordcount <in> <out>");
System.exit(2);
}
Job job = new Job(conf, "word count");
job.setJarByClass(WordCount.class);
job.setMapperClass(WordCountMapper.class);
job.setInputFormatClass(KeyValueTextInputFormat.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(Text.class);
KeyValueTextInputFormat.addInputPath(job, new Path(otherArgs[0]));
FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}