Example usage for org.apache.hadoop.util ProgramDriver subclass-usage

List of usage examples for org.apache.hadoop.util ProgramDriver subclass-usage

Introduction

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

Usage

From source file com.datasalt.pangool.benchmark.Driver.java

public class Driver extends ProgramDriver {

    public Driver() throws Throwable {
        super();
        addClass("wordcount_gen_data", GenerateData.class, "Generate data for the typical word count");
        addClass("pangool-wordcount", PangoolWordCount.class, "Typical word count in Pangool");

From source file com.datasalt.pangool.bootstrap.Driver.java

public class Driver extends ProgramDriver {

    public Driver() throws Throwable {
        super();
        addClass("sort", SortJob.class, "Just write the input as output (text files)");
    }

From source file com.datasalt.pangool.examples.Driver.java

public class Driver extends ProgramDriver {

    public Driver() throws Throwable {
        super();
        addClass("tupleviewer", TupleViewer.class,
                "A tool for textualizing tuple outputs. You give it a glob or path and it will print the stringified tuples.");

From source file com.splout.db.hadoop.Driver.java

/**
 * Hadoop's Driver - add here any Hadoop programs that could be run by default with the Splout JAR.
 */
public class Driver extends ProgramDriver {

    public Driver() throws Throwable {

From source file com.splout.db.ToolsDriver.java

/**
 * Driver to run different Splout tools
 * TODO Merge with the other Driver?
 */
public class ToolsDriver extends ProgramDriver {