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.blm.orc.OrcStruct.java

final public class OrcStruct implements Writable {

    private Object[] fields;

    public OrcStruct(int children) {
        fields = new Object[children];

From source file com.cg.mapreduce.fpgrowth.mahout.fpm.convertors.string.TopKStringPatterns.java

/**
 * A class which collects Top K string patterns
 *
 */
@Deprecated
public final class TopKStringPatterns implements Writable {

From source file com.cg.mapreduce.fpgrowth.mahout.fpm.TransactionTree.java

/**
 * A compact representation of transactions modeled on the lines to
 * {@link com.cg.mapreduce.fpgrowth.mahout.fpm.fpgrowth.FPTree} This reduces plenty of space and speeds up
 * Map/Reduce of {@link PFPGrowth} algorithm by reducing data size passed from the Mapper to the reducer where
 * {@link com.cg.mapreduce.fpgrowth.mahout.fpm.fpgrowth.FPGrowth} mining is done
 */

From source file com.chinamobile.bcbsp.action.Directive.java

/**
 * Directive A generic directive from the
 * {@link com.chinamobile.bcbsp.bsp.BSPController} to the
 * {@link com.chinamobile.bcbsp.bsp.WorkerManager} to take some 'action'.
 *
 *

From source file com.chinamobile.bcbsp.bspcontroller.ClusterStatus.java

/**
 * ClusterStatus for the workers status.
 * @author
 * @version
 */
public class ClusterStatus implements Writable {

From source file com.chinamobile.bcbsp.bspcontroller.Counters.java

/**
 * count the send messages num and size in byte
 * @author 
 *
 */
public class Counters implements Writable, Iterable<Counters.Group> {

From source file com.chinamobile.bcbsp.bspstaff.Staff.java

/**
 * Staff Base class for Staff.
 * @author
 * @version
 */
public abstract class Staff implements Writable {

From source file com.chinamobile.bcbsp.comm.IMessage.java

/**
 * BSPMessage consists of the tag and the arbitrary amount of data to be
 * communicated.
 * @param <I>
 *        Vertex id
 * @param <V>

From source file com.chinamobile.bcbsp.comm.io.util.WritableBSPMessages.java

/**
 * Manager Message Data with serialization of hadoop.
 * @author Liu Jinpeng
 */
public interface WritableBSPMessages extends Writable {

From source file com.chinamobile.bcbsp.fault.storage.Fault.java

/**
 * this class contains all kinds of fault that may happed during
 * job running and the fault type and information.
 * @author hadoop
 *
 */