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