Example usage for org.apache.hadoop.conf Configured subclass-usage

List of usage examples for org.apache.hadoop.conf Configured subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.conf Configured subclass-usage.

Usage

From source file com.cloudera.accumulo.upgrade.compatibility.DataCompatibilityLoad.java

/**
 * MapReduce job to load tables in a variety of Accumulo serializations.
 *
 * If you enable LZO, you must have the codec for Hadoop properly installed.
 *
 * Creates several tables, flexing Accumulo's serialization options:

From source file com.cloudera.accumulo.upgrade.compatibility.DataCompatibilityVerify.java

/**
 * Verify a set of tables matches expections set by DataCompatibilityLoad.
 * Given a set of tables, verify they contain only entries of the form:
 *
 * key, sha1(key)
 *

From source file com.cloudera.avro.AvroWordCount.java

/**
 * The classic WordCount example modified to output Avro Pair<CharSequence,
 * Integer> records instead of text.
 */
public class AvroWordCount extends Configured implements Tool {

From source file com.cloudera.avro.MapredColorCount.java

public class MapredColorCount extends Configured implements Tool {

    public static class ColorCountMapper extends AvroMapper<User, Pair<CharSequence, Integer>> {
        @Override
        public void map(User user, AvroCollector<Pair<CharSequence, Integer>> collector, Reporter reporter)
                throws IOException {

From source file com.cloudera.avro.MapReduceAvroWordCount.java

/**
 * The classic WordCount example modified to output Avro Pair<CharSequence,
 * Integer> records instead of text.
 */
public class MapReduceAvroWordCount extends Configured implements Tool {

From source file com.cloudera.avro.MapReduceColorCount.java

public class MapReduceColorCount extends Configured implements Tool {

    public static class ColorCountMapper extends Mapper<AvroKey<User>, NullWritable, Text, IntWritable> {

        @Override
        public void map(AvroKey<User> key, NullWritable value, Context context)

From source file com.cloudera.branchreduce.impl.thrift.LordMain.java

public class LordMain extends Configured implements Tool {

    private static final Log LOG = LogFactory.getLog(LordMain.class);

    private String hostname;
    private ServerSocket socket;

From source file com.cloudera.branchreduce.impl.thrift.VassalMain.java

/**
 *
 */
public class VassalMain extends Configured implements Tool {

    private static final Log LOG = LogFactory.getLog(VassalMain.class);

From source file com.cloudera.branchreduce.onezero.Main.java

/**
 * A driver class for the implicit enumeration solver.
 */
public class Main extends Configured implements Tool {

    private static final Options OPTIONS = new Options();

From source file com.cloudera.castagna.crunch.AverageBytesByIP.java

@SuppressWarnings("serial")
public class AverageBytesByIP extends Configured implements Tool, Serializable {

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

        if (args.length != 2) {