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.ebay.nest.io.sede.columnar.BytesRefArrayWritable.java

/**
 * <tt>BytesRefArrayWritable</tt> holds an array reference to BytesRefWritable,
 * and is able to resize without recreating new array if not necessary.
 * <p>
 *
 * Each <tt>BytesRefArrayWritable holds</tt> instance has a <i>valid</i> field,

From source file com.ebay.nest.io.sede.columnar.BytesRefWritable.java

/**
 * <tt>BytesRefWritable</tt> referenced a section of byte array. It can be used
 * to avoid unnecessary byte copy.
 */
public class BytesRefWritable implements Writable, Comparable<BytesRefWritable> {

From source file com.ebay.nest.io.sede.typeinfo.BaseTypeParams.java

/**
 * Base type for type-specific params, such as char(10) or decimal(10, 2).
 */
public abstract class BaseTypeParams implements Writable, Serializable {

    private static final long serialVersionUID = 1L;

From source file com.emadbarsoum.lib.Tuple.java

/**
 * Writable type storing multiple {@link org.apache.hadoop.io.Writable}s.
 *
 * This is *not* a general-purpose tuple type. In almost all cases, users are
 * encouraged to implement their own serializable types, which can perform
 * better validation and provide more efficient encodings than this class is

From source file com.explorys.apothecary.hbase.mr.inputformat.HRegionInputSplit.java

public class HRegionInputSplit extends InputSplit implements Writable {

    String hostname;
    int countOfStoreFiles;
    HRegionInfo regionInfo;

From source file com.explorys.apothecary.hbase.mr.inputformat.ResultTaggedIfDeleteFamilyKVS.java

public class ResultTaggedIfDeleteFamilyKVS extends Result implements Writable, WritableWithSize {

    boolean hasDeletes;

    /**
     * Writable constructor: DO NOT USE

From source file com.facebook.hive.orc.lazy.OrcLazyObject.java

public abstract class OrcLazyObject implements Writable {
    private long currentRow = 0;
    private final LazyTreeReader treeReader;
    protected Object previous;
    private boolean nextIsNull;
    private boolean materialized;

From source file com.facebook.hive.orc.OrcStruct.java

public final class OrcStruct implements Writable {

    private Object[] fields;
    private List<String> fieldNames;

    public OrcStruct() {

From source file com.facebook.hiveio.common.HiveTableDesc.java

/**
 * Name of a table in Hive
 */
public class HiveTableDesc implements Writable {
    /** defautl database */
    private static final String DEFAULT_DATABASE = "default";

From source file com.facebook.hiveio.common.MetastoreDesc.java

/**
 * Host/Port describing a metastore server destination
 */
public class MetastoreDesc implements Writable {
    /** Hive Metastore Host. If not set will infer from HiveConf */
    private String host;