Java tutorial
/** * Tencent is pleased to support the open source community by making TDW available. * Copyright (C) 2014 THL A29 Limited, a Tencent company. All rights reserved. * Licensed under the Apache License, Version 2.0 (the "License"); you may not use * this file except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS * OF ANY KIND, either express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package IndexService; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.hadoop.fs.BlockLocation; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.mapred.FileInputFormat; import org.apache.hadoop.mapred.InputSplit; import org.apache.hadoop.mapred.JobConf; import org.apache.hadoop.mapred.RecordReader; import org.apache.hadoop.mapred.Reporter; import FormatStorage1.IFormatDataFile; import FormatStorage1.ISegmentIndex; @SuppressWarnings("deprecation") public class IndexMergeIFormatInputFormat<K, V> extends FileInputFormat<IndexKey, IndexValue> { public static final Log LOG = LogFactory.getLog(IndexMergeIFormatInputFormat.class); public IndexMergeIFormatInputFormat() { } public RecordReader<IndexKey, IndexValue> getRecordReader(InputSplit split, JobConf job, Reporter reporter) throws IOException { return new IndexMergeIFormatRecordReader<IndexKey, IndexValue>(job, (IndexMergeIFormatSplit) split); } public InputSplit[] getSplits(JobConf job, int numSplits) throws IOException { Path tmpPath = null; List<IndexMergeIFormatSplit> splits = new ArrayList<IndexMergeIFormatSplit>(); for (FileStatus file : listStatus(job)) { Path path = file.getPath(); FileSystem fs = path.getFileSystem(job); long length = file.getLen(); BlockLocation[] blkLocations = fs.getFileBlockLocations(file, 0, length); if (blkLocations.length <= 1) { IndexMergeIFormatSplit split = new IndexMergeIFormatSplit(path, length, blkLocations[0].getHosts()); splits.add(split); } else { String filename = path.toString(); IFormatDataFile ifd = new IFormatDataFile(job); ifd.open(filename); ISegmentIndex segmentIndex = ifd.segIndex(); for (int i = 0; i < segmentIndex.getSegnum(); i++) { IndexMergeIFormatSplit split = new IndexMergeIFormatSplit(path, segmentIndex.getseglen(i), segmentIndex.getILineIndex(i).beginline(), segmentIndex.getILineIndex(i).endline() - segmentIndex.getILineIndex(i).beginline() + 1, blkLocations[i].getHosts()); splits.add(split); } ifd.close(); } tmpPath = path; } if (splits.size() == 0) { splits.add(new IndexMergeIFormatSplit(tmpPath, 0, null, 0, null)); return splits.toArray(new IndexMergeIFormatSplit[splits.size()]); } System.out.println("Total # of splits: " + splits.size()); return splits.toArray(new IndexMergeIFormatSplit[splits.size()]); } }