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

网格计算

开发平台:

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.examples.terasort;
  19. import java.io.DataOutputStream;
  20. import java.io.IOException;
  21. import org.apache.hadoop.fs.FSDataOutputStream;
  22. import org.apache.hadoop.fs.FileSystem;
  23. import org.apache.hadoop.fs.Path;
  24. import org.apache.hadoop.io.Text;
  25. import org.apache.hadoop.mapred.JobConf;
  26. import org.apache.hadoop.mapred.RecordWriter;
  27. import org.apache.hadoop.mapred.TextOutputFormat;
  28. import org.apache.hadoop.util.Progressable;
  29. /**
  30.  * A streamlined text output format that writes key, value, and "rn".
  31.  */
  32. public class TeraOutputFormat extends TextOutputFormat<Text,Text> {
  33.   static final String FINAL_SYNC_ATTRIBUTE = "terasort.final.sync";
  34.   /**
  35.    * Set the requirement for a final sync before the stream is closed.
  36.    */
  37.   public static void setFinalSync(JobConf conf, boolean newValue) {
  38.     conf.setBoolean(FINAL_SYNC_ATTRIBUTE, newValue);
  39.   }
  40.   /**
  41.    * Does the user want a final sync at close?
  42.    */
  43.   public static boolean getFinalSync(JobConf conf) {
  44.     return conf.getBoolean(FINAL_SYNC_ATTRIBUTE, false);
  45.   }
  46.   static class TeraRecordWriter extends LineRecordWriter<Text,Text> {
  47.     private static final byte[] newLine = "rn".getBytes();
  48.     private boolean finalSync = false;
  49.     public TeraRecordWriter(DataOutputStream out,
  50.                             JobConf conf) {
  51.       super(out);
  52.       finalSync = getFinalSync(conf);
  53.     }
  54.     public synchronized void write(Text key, 
  55.                                    Text value) throws IOException {
  56.       out.write(key.getBytes(), 0, key.getLength());
  57.       out.write(value.getBytes(), 0, value.getLength());
  58.       out.write(newLine, 0, newLine.length);
  59.     }
  60.     
  61.     public void close() throws IOException {
  62.       if (finalSync) {
  63.         ((FSDataOutputStream) out).sync();
  64.       }
  65.       super.close(null);
  66.     }
  67.   }
  68.   public RecordWriter<Text,Text> getRecordWriter(FileSystem ignored,
  69.                                                  JobConf job,
  70.                                                  String name,
  71.                                                  Progressable progress
  72.                                                  ) throws IOException {
  73.     Path dir = getWorkOutputPath(job);
  74.     FileSystem fs = dir.getFileSystem(job);
  75.     FSDataOutputStream fileOut = fs.create(new Path(dir, name), progress);
  76.     return new TeraRecordWriter(fileOut, job);
  77.   }
  78. }