public void map(LongWritable key, Text value, OutputCollector<Text, IntWritable> output, Reporter reporter) throws IOException {
String line = value.toString();
StringTokenizer tokenizer = new StringTokenizer(line);
while (tokenizer.hasMoreTokens()) {
word.set(tokenizer.nextToken());
output.collect(word, one);
}
}
}
map-reduce の map 関数のこの基本的なプログラムを理解しようとしていますが、入力パラメーターは何ですか? マップの定義が見つかりませんでした。
この関数が何をしているのか誰かが教えてくれれば、それは素晴らしいことです