9

Map 関数で使用される OutputCollector の「インスタンス」出力かどうかを知りたい: output.collect(key, value) this -output- キーと値のペアをどこかに格納するか レデューサー関数に発行したとしても、それらは中間ファイルでなければなりませんよね?それらのファイルは何ですか?それらはプログラマーによって表示され、決定されますか? メイン関数で指定する OutputKeyClass と OutputValueClasses は、これらのストレージの場所ですか? 【Text.classとIntWritable.class】

MapReduce の Word Count の例の標準コードを提供します。これは、ネットの多くの場所で見つけることができます。

public class WordCount {

public static class Map extends MapReduceBase implements Mapper<LongWritable, Text, Text, IntWritable> {
private final static IntWritable one = new IntWritable(1);
private Text word = new Text();

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

public static class Reduce extends MapReduceBase implements Reducer<Text, IntWritable, Text, IntWritable> {
public void reduce(Text key, Iterator<IntWritable> values, OutputCollector<Text, IntWritable> output, Reporter reporter) throws IOException {
int sum = 0;
while (values.hasNext()) {
sum += values.next().get();
}
output.collect(key, new IntWritable(sum));
}
}

public static void main(String[] args) throws Exception {
JobConf conf = new JobConf(WordCount.class);
conf.setJobName("wordcount");

conf.setOutputKeyClass(Text.class);
conf.setOutputValueClass(IntWritable.class);

conf.setMapperClass(Map.class);
conf.setCombinerClass(Reduce.class);
conf.setReducerClass(Reduce.class);

conf.setInputFormat(TextInputFormat.class);
conf.setOutputFormat(TextOutputFormat.class);

FileInputFormat.setInputPaths(conf, new Path(args[0]));
FileOutputFormat.setOutputPath(conf, new Path(args[1]));    
JobClient.runJob(conf);
}
}
4

3 に答える 3

4

Map 関数からの出力は一時中間ファイルに保存されます。これらのファイルは Hadoop によって透過的に処理されるため、通常のシナリオでは、プログラマーはアクセスできません。各マッパー内で何が起こっているのか知りたい場合は、それぞれのジョブのログを確認してください。各マップ タスクのログ ファイルが見つかります。

一時ファイルが生成される場所を制御し、それらにアクセスしたい場合は、独自の OutputCollector クラスを作成する必要がありますが、それがどれほど簡単かはわかりません。

ソースコードを見たい場合は、svn を使用して取得できます。ここで入手できると思います: http://hadoop.apache.org/common/version_control.html

于 2012-06-14T05:21:01.917 に答える
2

を実装する独自のクラスを作成しない限り、それらは一時的な場所に保存され、開発者は利用できないと思いますOutputCollector

私はかつてこれらのファイルにアクセスし、副作用ファイルを作成して問題を解決する必要がありました:http: //hadoop.apache.org/common/docs/r0.20.2/mapred_tutorial.html#Task+Side-Effect+Files

于 2012-06-12T12:55:03.133 に答える
0

グループ化された中間出力は、常に SequenceFiles に保存されます。アプリケーションは、中間出力を圧縮するかどうかとその方法、および JobConf を介してどの CompressionCodec を使用するかを指定できます。

http://hadoop.apache.org/docs/current/api/org/apache/hadoop/mapred/Mapper.html

于 2013-09-25T10:31:12.473 に答える