3

Hadoop では、データがどのようにマップに配置され、機能が削減されるかを理解するのが少し難しいです。入力形式と出力形式を定義してから、入力と出力のキーの種類を定義できることを知っています。しかし、たとえば、オブジェクトを入力タイプにしたい場合、Hadoop は内部的にどのようにそれを行うのでしょうか?

ありがとう...

4

1 に答える 1

7

Hadoop の InputFormat および OutputFormat インターフェイスを使用してカスタム フォーマットを作成できます。たとえば、MapReduce ジョブの出力を JSON としてフォーマットすることができます。このようなものです。

public class JsonOutputFormat extends TextOutputFormat<Text, IntWritable> {
    @Override
    public RecordWriter<Text, IntWritable> getRecordWriter(
            TaskAttemptContext context) throws IOException, 
                  InterruptedException {
        Configuration conf = context.getConfiguration();
        Path path = getOutputPath(context);
        FileSystem fs = path.getFileSystem(conf);
        FSDataOutputStream out = 
                fs.create(new Path(path,context.getJobName()));
        return new JsonRecordWriter(out);
    }

    private static class JsonRecordWriter extends 
          LineRecordWriter<Text,IntWritable>{
        boolean firstRecord = true;
        @Override
        public synchronized void close(TaskAttemptContext context)
                throws IOException {
            out.writeChar('{');
            super.close(null);
        }

        @Override
        public synchronized void write(Text key, IntWritable value)
                throws IOException {
            if (!firstRecord){
                out.writeChars(",\r\n");
                firstRecord = false;
            }
            out.writeChars("\"" + key.toString() + "\":\""+
                    value.toString()+"\"");
        }

        public JsonRecordWriter(DataOutputStream out) 
                throws IOException{
            super(out);
            out.writeChar('}');
        }
    }
}
于 2012-06-09T22:27:41.990 に答える