Example usage for org.apache.hadoop.io Writable interface-usage

List of usage examples for org.apache.hadoop.io Writable interface-usage

Introduction

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

Usage

From source file com.willetinc.hadoop.mapreduce.dynamodb.io.AttributeValueWritable.java

public abstract class AttributeValueWritable implements Writable {

    private final String fieldName;

    private final Types type;

From source file com.willetinc.hadoop.mapreduce.dynamodb.io.DynamoDBKeyWritable.java

public interface DynamoDBKeyWritable extends Writable {

    public AttributeValueWritable getHashKey();

    public AttributeValue getHashKeyValue();

From source file com.wipro.ats.bdre.datagen.mr.RangeInputSplit.java

/**
 * An input split consisting of a range on numbers.
 */
public class RangeInputSplit extends InputSplit implements Writable {
    long firstRow;
    long rowCount;

From source file com.xiaomi.linden.hadoop.indexing.keyvalueformat.IntermediateForm.java

/**
 * An intermediate form for one or more parsed Lucene documents and/or
 * delete terms. It actually uses Lucene file format as the format for
 * the intermediate form by using RAM dir files.
 *
 * Note: If process(*) is ever called, closeWriter() should be called.

From source file com.yahoo.druid.hadoop.DruidInputSplit.java

public class DruidInputSplit extends InputSplit implements Writable {
    //absolute hdfs path all the way to index.zip
    private String path;

    public DruidInputSplit() {
    }

From source file com.yahoo.labs.yamall.hadoop.core.CompositeDoubleTextWritable.java

public class CompositeDoubleTextWritable implements Writable {
    public double val1 = 0;
    public String val2 = "";

    public CompositeDoubleTextWritable() {
    }

From source file com.yahoo.labs.yamall.hadoop.core.HashMapInt2StringWritable.java

public class HashMapInt2StringWritable implements Writable {

    private HashMap<Integer, String> entries = null;

    public HashMapInt2StringWritable() {
        entries = new HashMap<Integer, String>();

From source file com.yahoo.labs.yamall.hadoop.core.InstanceNoTagWritable.java

/**
 * 
 * @author francesco
 * @version 1.0
 */
public class InstanceNoTagWritable implements Writable {

From source file com.yahoo.labs.yamall.hadoop.core.InstanceOrHashMapWritable.java

public class InstanceOrHashMapWritable implements Writable {
    public enum TypeWritable {
        EMPTY, INSTANCE, HASHMAP
    }

    private Writable o;

From source file com.yahoo.labs.yamall.hadoop.core.SparseVectorWritable.java

public class SparseVectorWritable implements Writable {

    private SparseVector entries = null;

    SparseVectorWritable() {
    }