com.talis.hadoop.rdf.collation.QuadsCollater.java Source code

Java tutorial

Introduction

Here is the source code for com.talis.hadoop.rdf.collation.QuadsCollater.java

Source

/*
 *    Copyright 2011 Talis Systems Ltd
 * 
 *    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 com.talis.hadoop.rdf.collation;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.ArrayWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
import org.apache.jena.tdbloader3.Constants;
import org.apache.jena.tdbloader3.Utils;
import org.apache.jena.tdbloader3.io.NQuadsInputFormat;
import org.apache.jena.tdbloader3.io.QuadWritable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.talis.hadoop.rdf.QuadArrayWritable;

public class QuadsCollater extends Configured implements Tool {

    private static final Logger LOG = LoggerFactory.getLogger(QuadsCollater.class);

    public static final String JOB_NAME = "QuadsCollation";

    public QuadsCollater() {
        super();
        LOG.debug("Constructed with no configuration.");
    }

    public QuadsCollater(Configuration configuration) {
        super(configuration);
        LOG.debug("Constructed with configuration.");
    }

    @Override
    public int run(String[] args) throws Exception {

        Configuration configuration = getConf();

        boolean useCompression = configuration.getBoolean(Constants.OPTION_USE_COMPRESSION,
                Constants.OPTION_USE_COMPRESSION_DEFAULT);
        if (useCompression) {
            configuration.setBoolean("mapred.compress.map.output", true);
            configuration.set("mapred.output.compression.type", "BLOCK");
            configuration.set("mapred.map.output.compression.codec", "org.apache.hadoop.io.compress.GzipCodec");
        }

        boolean overrideOutput = configuration.getBoolean(Constants.OPTION_OVERRIDE_OUTPUT,
                Constants.OPTION_OVERRIDE_OUTPUT_DEFAULT);
        FileSystem fs = FileSystem.get(new Path(args[1]).toUri(), configuration);
        if (overrideOutput) {
            fs.delete(new Path(args[1]), true);
        }

        Job job = new Job(configuration);
        job.setJobName(JOB_NAME);
        job.setJarByClass(getClass());

        FileInputFormat.addInputPath(job, new Path(args[0]));
        FileOutputFormat.setOutputPath(job, new Path(args[1]));
        FileOutputFormat.setCompressOutput(job, true);

        job.setInputFormatClass(NQuadsInputFormat.class);
        job.setMapperClass(CollationMapper.class);
        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(QuadWritable.class);

        job.setReducerClass(CollationReducer.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(QuadArrayWritable.class);

        job.setOutputFormatClass(SequenceFileOutputFormat.class);

        if (LOG.isDebugEnabled())
            Utils.log(job, LOG);

        return job.waitForCompletion(true) ? 0 : 1;
    }

    @SuppressWarnings("PMD.SystemPrintln")
    public static void main(String[] args) throws Exception {
        LOG.debug("main method: {}", Utils.toString(args));
        int exitCode = ToolRunner.run(new Configuration(), new QuadsCollater(), args);
        System.exit(exitCode);
    }

}