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.ml.ira.algos.LogisticModelParameters.java

/**
 * Encapsulates everything we need to know about a model and how it reads and vectorizes its input.
 * This encapsulation allows us to coherently save and restore a model from a file.  This also
 * allows us to keep command line arguments that affect learning in a coherent way.
 */
public class LogisticModelParameters implements Writable {

From source file com.mongodb.hadoop.input.MongoInputSplit.java

public class MongoInputSplit extends InputSplit implements Writable, org.apache.hadoop.mapred.InputSplit {
    private static final Log LOG = LogFactory.getLog(MongoInputSplit.class);
    //CHECKSTYLE:OFF
    protected MongoClientURI inputURI;
    protected MongoClientURI authURI;
    protected String keyField = "_id";

From source file com.mongodb.hadoop.io.MongoUpdateWritable.java

/**
 * This is <em>not</em> reusable.
 */

@SuppressWarnings("deprecation")
public class MongoUpdateWritable implements Writable {

From source file com.mongodb.hadoop.mapred.input.MongoInputSplit.java

@SuppressWarnings("deprecation")
public class MongoInputSplit implements Writable, InputSplit {

    public MongoInputSplit(MongoURI inputURI, DBObject query, DBObject fields, DBObject sort, int limit, int skip) {
        log.info("Creating a new MongoInputSplit for MongoURI '" + inputURI + "', query: '" + query
                + "', fieldSpec: '" + fields + "', sort: '" + sort + "', limit: " + limit + ", skip: " + skip

From source file com.moz.fiji.hive.io.EntityIdWritable.java

/**
 * Container class for the data stored within an entityId.
 */
public class EntityIdWritable implements Writable {
    private static final Logger LOG = LoggerFactory.getLogger(EntityIdWritable.class);

From source file com.moz.fiji.hive.io.FijiCellWritable.java

/**
 * Writable version of the data stored within a FijiCell.
 */
public class FijiCellWritable implements Writable {
    private static final Logger LOG = LoggerFactory.getLogger(FijiCellWritable.class);

From source file com.moz.fiji.hive.io.FijiRowDataWritable.java

/**
 * Writable version of the data stored within a FijiRowData.  Contains a subset of methods
 * which are necessary for the Hive adapter.
 */
public class FijiRowDataWritable implements Writable, Closeable {
    private static final Logger LOG = LoggerFactory.getLogger(FijiRowDataWritable.class);

From source file com.mpcs53112.finalproject.bfs.Counter.java

/**
 * A named counter that tracks the progress of a map/reduce job.
 * 
 * <p><code>Counters</code> represent global counters, defined either by the 
 * Map-Reduce framework or applications. Each <code>Counter</code> is named by
 * an {@link Enum} and has a long for the value.</p>

From source file com.nearinfinity.blur.mapreduce.BlurColumn.java

public class BlurColumn implements Writable {

    private String name;
    private String value;

    public BlurColumn() {

From source file com.nearinfinity.blur.mapreduce.BlurRecord.java

public class BlurRecord implements Writable, ReaderBlurRecord {

    private String _rowId;
    private String _recordId;
    private String _family;