Example usage for org.apache.hadoop.conf Configurable interface-usage

List of usage examples for org.apache.hadoop.conf Configurable interface-usage

Introduction

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

Usage

From source file RangePartitioner.java

/**
 * Ranger partitioner. In the context of graph algorithms, ensures that consecutive node ids are
 * blocked together.
 *
 * @author Jimmy Lin
 * @author Michael Schatz

From source file RHHBaseRecorder.java

public class RHHBaseRecorder extends org.apache.hadoop.mapreduce.InputFormat<RHRaw, RHResult>
        implements Configurable {

    private final static Log LOG = LogFactory.getLog(RHHBaseRecorder.class);
    public static boolean ValueIsString = false;
    public static boolean SingleCFQ = false;

From source file at.illecker.hadoop.rootbeer.examples.matrixmultiplication.DistributedRowMatrix.java

/**
 * @author DistributedRowMatrix based on Mahout
 *         https://github.com/apache/mahout/
 *         blob/trunk/core/src/main/java/org/apache
 *         /mahout/math/hadoop/DistributedRowMatrix.java
 *         <p>

From source file at.illecker.hama.hybrid.examples.matrixmultiplication.util.DistributedRowMatrix.java

public class DistributedRowMatrix implements Configurable {
    private static final Log log = LogFactory.getLog(DistributedRowMatrix.class);

    private final Path inputPath;
    private final Path outputTmpPath;
    private Configuration conf;

From source file at.illecker.hama.hybrid.examples.matrixmultiplication2.DistributedRowMatrix.java

public class DistributedRowMatrix implements Configurable {
    private static final Log LOG = LogFactory.getLog(DistributedRowMatrix.class);

    private final Path inputPath;
    private final Path outputTmpPath;
    private Configuration conf;

From source file at.illecker.hama.rootbeer.examples.matrixmultiplication.compositeinput.util.DistributedRowMatrix.java

/**
 * @author DistributedRowMatrix based on Mahout
 *         https://github.com/apache/mahout/
 *         blob/trunk/core/src/main/java/org/apache
 *         /mahout/math/hadoop/DistributedRowMatrix.java
 *         <p>

From source file at.illecker.hama.rootbeer.examples.matrixmultiplication.util.DistributedRowMatrix.java

public class DistributedRowMatrix implements Configurable {
    private static final Log log = LogFactory.getLog(DistributedRowMatrix.class);

    private final Path inputPath;
    private final Path outputTmpPath;
    private Configuration conf;

From source file basic.RangePartitioner.java

/**
 * Ranger partitioner. In the context of graph algorithms, ensures that consecutive node ids are
 * blocked together.
 *
 * @author Jimmy Lin
 * @author Michael Schatz

From source file boa.runtime.BoaCombiner.java

/**
 * A {@link Reducer} that pre-reduces the outputs from a single mapper node in
 * order to save I/O.
 * 
 * @author anthonyu
 * @author rdyer

From source file boa.runtime.BoaMapper.java

/**
 * A {@link Mapper} that performs the brunt of all Boa work.
 * 
 * @author anthonyu
 */
public abstract class BoaMapper extends Mapper<Text, BytesWritable, EmitKey, EmitValue> implements Configurable {