blob: df0737346e61e57d6073f1225cec9429b14385e3 [file] [log] [blame]
/*
* 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 org.apache.giraph.bsp;
import java.io.IOException;
import org.apache.giraph.graph.BspUtils;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.JobContext;
import org.apache.hadoop.mapreduce.OutputCommitter;
import org.apache.hadoop.mapreduce.OutputFormat;
import org.apache.hadoop.mapreduce.RecordWriter;
import org.apache.hadoop.mapreduce.TaskAttemptContext;
import org.apache.log4j.Logger;
/**
* This is for internal use only. Allows the vertex output format routines
* to be called as if a normal Hadoop job.
*/
public class BspOutputFormat extends OutputFormat<Text, Text> {
/** Class logger */
private static Logger LOG = Logger.getLogger(BspOutputFormat.class);
@Override
public void checkOutputSpecs(JobContext context)
throws IOException, InterruptedException {
if (BspUtils.getVertexOutputFormatClass(context.getConfiguration())
== null) {
LOG.warn("checkOutputSpecs: ImmutableOutputCommiter" +
" will not check anything");
return;
}
BspUtils.createVertexOutputFormat(context.getConfiguration()).
checkOutputSpecs(context);
}
@Override
public OutputCommitter getOutputCommitter(TaskAttemptContext context)
throws IOException, InterruptedException {
if (BspUtils.getVertexOutputFormatClass(context.getConfiguration())
== null) {
LOG.warn("getOutputCommitter: Returning " +
"ImmutableOutputCommiter (does nothing).");
return new ImmutableOutputCommitter();
}
return BspUtils.createVertexOutputFormat(context.getConfiguration()).
getOutputCommitter(context);
}
@Override
public RecordWriter<Text, Text> getRecordWriter(TaskAttemptContext context)
throws IOException, InterruptedException {
return new BspRecordWriter();
}
}