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 IFormatInputFormat<K, V> extends FileInputFormat<IndexKey, IndexValue> { public static final Log LOG = LogFactory.getLog(IFormatInputFormat.class); public IFormatInputFormat() { } public RecordReader<IndexKey, IndexValue> getRecordReader(InputSplit split, JobConf job, Reporter reporter) throws IOException { return new IFormatRecordReader<IndexKey, IndexValue>(job, (IFormatInputSplit) split); } public InputSplit[] getSplits(JobConf job, int numSplits) throws IOException { Path tmpPath = null; List<IFormatInputSplit> splits = new ArrayList<IFormatInputSplit>(); 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) { IFormatInputSplit split = new IFormatInputSplit(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++) { IFormatInputSplit split = new IFormatInputSplit(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 IFormatInputSplit(tmpPath, 0, 0, 0, new String[0])); return splits.toArray(new IFormatInputSplit[splits.size()]); } LOG.info("Total # of splits: " + splits.size()); return splits.toArray(new IFormatInputSplit[splits.size()]); } }