Java tutorial
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 it.crs4.pydoop.mapreduce.pipes; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.FloatWritable; import org.apache.hadoop.io.NullWritable; import org.apache.hadoop.mapreduce.InputFormat; import org.apache.hadoop.mapreduce.InputSplit; import org.apache.hadoop.mapreduce.lib.input.FileSplit; import org.apache.hadoop.mapreduce.JobContext; import org.apache.hadoop.mapreduce.TaskAttemptContext; import org.apache.hadoop.mapreduce.RecordReader; import org.apache.hadoop.mapred.Reporter; import org.apache.hadoop.mapreduce.lib.input.TextInputFormat; import org.apache.hadoop.util.ReflectionUtils; /** * Dummy input format used when non-Java a {@link RecordReader} is used by * the Pipes' application. * * The only useful thing this does is set up the Map-Reduce job to get the * {@link PipesDummyRecordReader}, everything else left for the 'actual' * InputFormat specified by the user which is given by * <i>mapreduce.pipes.inputformat</i>. */ class PipesNonJavaInputFormat extends InputFormat<FloatWritable, NullWritable> { public List<InputSplit> getSplits(JobContext context) throws IOException, InterruptedException { Configuration conf = context.getConfiguration(); return ReflectionUtils .newInstance(conf.getClass(Submitter.INPUT_FORMAT, TextInputFormat.class, InputFormat.class), conf) .getSplits(context); } @Override public DummyRecordReader createRecordReader(InputSplit split, TaskAttemptContext context) throws IOException { return new PipesDummyRecordReader(split, context); } /** * A dummy {@link org.apache.hadoop.mapreduce.RecordReader} to help track the * progress of Hadoop Pipes' applications when they are using a non-Java * <code>RecordReader</code>. * * The <code>PipesDummyRecordReader</code> is informed of the 'progress' of * the task by the {@link OutputHandler#progress(float)} which calls the * {@link #next(FloatWritable, NullWritable)} with the progress as the * <code>key</code>. */ static class PipesDummyRecordReader extends DummyRecordReader { float progress = 0.0f; public PipesDummyRecordReader() { } public PipesDummyRecordReader(InputSplit split, TaskAttemptContext context) throws IOException { initialize(split, context); } @Override public void initialize(InputSplit split, TaskAttemptContext context) throws IOException { } public synchronized void close() throws IOException { } @Override public float getProgress() throws IOException, InterruptedException { return progress; } @Override public boolean nextKeyValue() throws IOException, InterruptedException { return true; } @Override public FloatWritable getCurrentKey() throws IOException, InterruptedException { return new FloatWritable(progress); } @Override public NullWritable getCurrentValue() throws IOException, InterruptedException { return null; } @Override public synchronized boolean next(FloatWritable key, NullWritable value) throws IOException { progress = key.get(); return true; } } }