SequenceFileOutputFormat.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.mapreduce.lib.output;
  19. import java.io.IOException;
  20. import org.apache.hadoop.fs.FileSystem;
  21. import org.apache.hadoop.fs.Path;
  22. import org.apache.hadoop.io.SequenceFile;
  23. import org.apache.hadoop.io.SequenceFile.CompressionType;
  24. import org.apache.hadoop.io.compress.CompressionCodec;
  25. import org.apache.hadoop.io.compress.DefaultCodec;
  26. import org.apache.hadoop.mapreduce.Job;
  27. import org.apache.hadoop.mapreduce.JobContext;
  28. import org.apache.hadoop.mapreduce.OutputFormat;
  29. import org.apache.hadoop.mapreduce.RecordWriter;
  30. import org.apache.hadoop.mapreduce.TaskAttemptContext;
  31. import org.apache.hadoop.util.ReflectionUtils;
  32. import org.apache.hadoop.conf.Configuration;
  33. /** An {@link OutputFormat} that writes {@link SequenceFile}s. */
  34. public class SequenceFileOutputFormat <K,V> extends FileOutputFormat<K, V> {
  35.   public RecordWriter<K, V> 
  36.          getRecordWriter(TaskAttemptContext context
  37.                          ) throws IOException, InterruptedException {
  38.     Configuration conf = context.getConfiguration();
  39.     
  40.     CompressionCodec codec = null;
  41.     CompressionType compressionType = CompressionType.NONE;
  42.     if (getCompressOutput(context)) {
  43.       // find the kind of compression to do
  44.       compressionType = getOutputCompressionType(context);
  45.       // find the right codec
  46.       Class<?> codecClass = getOutputCompressorClass(context, 
  47.                                                      DefaultCodec.class);
  48.       codec = (CompressionCodec) 
  49.         ReflectionUtils.newInstance(codecClass, conf);
  50.     }
  51.     // get the path of the temporary output file 
  52.     Path file = getDefaultWorkFile(context, "");
  53.     FileSystem fs = file.getFileSystem(conf);
  54.     final SequenceFile.Writer out = 
  55.       SequenceFile.createWriter(fs, conf, file,
  56.                                 context.getOutputKeyClass(),
  57.                                 context.getOutputValueClass(),
  58.                                 compressionType,
  59.                                 codec,
  60.                                 context);
  61.     return new RecordWriter<K, V>() {
  62.         public void write(K key, V value)
  63.           throws IOException {
  64.           out.append(key, value);
  65.         }
  66.         public void close(TaskAttemptContext context) throws IOException { 
  67.           out.close();
  68.         }
  69.       };
  70.   }
  71.   /**
  72.    * Get the {@link CompressionType} for the output {@link SequenceFile}.
  73.    * @param job the {@link Job}
  74.    * @return the {@link CompressionType} for the output {@link SequenceFile}, 
  75.    *         defaulting to {@link CompressionType#RECORD}
  76.    */
  77.   public static CompressionType getOutputCompressionType(JobContext job) {
  78.     String val = job.getConfiguration().get("mapred.output.compression.type", 
  79.                                             CompressionType.RECORD.toString());
  80.     return CompressionType.valueOf(val);
  81.   }
  82.   
  83.   /**
  84.    * Set the {@link CompressionType} for the output {@link SequenceFile}.
  85.    * @param job the {@link Job} to modify
  86.    * @param style the {@link CompressionType} for the output
  87.    *              {@link SequenceFile} 
  88.    */
  89.   public static void setOutputCompressionType(Job job, 
  90.                                           CompressionType style) {
  91.     setCompressOutput(job, true);
  92.     job.getConfiguration().set("mapred.output.compression.type", 
  93.                                style.toString());
  94.   }
  95. }