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

网格计算

开发平台:

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.input;
  19. import java.io.IOException;
  20. import java.util.List;
  21. import org.apache.hadoop.fs.FileStatus;
  22. import org.apache.hadoop.fs.FileSystem;
  23. import org.apache.hadoop.fs.Path;
  24. import org.apache.hadoop.io.SequenceFile;
  25. import org.apache.hadoop.io.MapFile;
  26. import org.apache.hadoop.mapreduce.InputFormat;
  27. import org.apache.hadoop.mapreduce.InputSplit;
  28. import org.apache.hadoop.mapreduce.JobContext;
  29. import org.apache.hadoop.mapreduce.RecordReader;
  30. import org.apache.hadoop.mapreduce.TaskAttemptContext;
  31. /** An {@link InputFormat} for {@link SequenceFile}s. */
  32. public class SequenceFileInputFormat<K, V> extends FileInputFormat<K, V> {
  33.   @Override
  34.   public RecordReader<K, V> createRecordReader(InputSplit split,
  35.                                                TaskAttemptContext context
  36.                                                ) throws IOException {
  37.     return new SequenceFileRecordReader<K,V>();
  38.   }
  39.   @Override
  40.   protected long getFormatMinSplitSize() {
  41.     return SequenceFile.SYNC_INTERVAL;
  42.   }
  43.   @Override
  44.   protected List<FileStatus> listStatus(JobContext job
  45.                                         )throws IOException {
  46.     List<FileStatus> files = super.listStatus(job);
  47.     int len = files.size();
  48.     for(int i=0; i < len; ++i) {
  49.       FileStatus file = files.get(i);
  50.       if (file.isDir()) {     // it's a MapFile
  51.         Path p = file.getPath();
  52.         FileSystem fs = p.getFileSystem(job.getConfiguration());
  53.         // use the data file
  54.         files.set(i, fs.getFileStatus(new Path(p, MapFile.DATA_FILE_NAME)));
  55.       }
  56.     }
  57.     return files;
  58.   }
  59. }