Example usage for org.apache.hadoop.mapred OutputCollector interface-usage

List of usage examples for org.apache.hadoop.mapred OutputCollector interface-usage

Introduction

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

Usage

From source file cascading.flow.tez.stream.element.OldOutputCollector.java

/**
 *
 */
class OldOutputCollector implements OutputCollector {
    private final KeyValueWriter output;

From source file cascading.hbase.HBaseTapCollector.java

/**
 * Class HBaseTapCollector is a kind of
 * {@link cascading.tuple.TupleEntrySchemeCollector} that writes tuples to the
 * resource managed by a particular {@link HBaseTap} instance.
 */
public class HBaseTapCollector extends TupleEntrySchemeCollector implements OutputCollector {

From source file cascading.memcached.MCOutputCollector.java

/**
 *
 */
public class MCOutputCollector<V> extends TupleEntryCollector implements OutputCollector<String, V> {
    private static final Logger LOG = LoggerFactory.getLogger(MCOutputCollector.class);

From source file cascading.tap.hadoop.io.TapOutputCollector.java

/**
 *
 */
public class TapOutputCollector implements OutputCollector, Closeable {
    private static final Logger LOG = LoggerFactory.getLogger(TapOutputCollector.class);

From source file cascading.tap.hadoop.TapCollector.java

/**
 * Class TapCollector is a kind of {@link cascading.tuple.TupleEntryCollector} that writes tuples to the resource managed by
 * a particular {@link cascading.tap.Tap} instance.
 */
public class TapCollector extends TupleEntryCollector implements OutputCollector {
    /** Field LOG */

From source file cascading.tap.hadoop.util.MeasuredOutputCollector.java

/**
 *
 */
public class MeasuredOutputCollector implements OutputCollector, Closeable {
    private final FlowProcess flowProcess;
    private final Enum counter;

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

/**
 * An output collector for {@link Reducer} for PFPGrowth which updates the status as well as writes the
 * patterns generated by the algorithm
 * 
 * @param <IK>
 * @param <IV>

From source file com.cg.mapreduce.fpgrowth.mahout.fpm.convertors.integer.IntegerStringOutputConverter.java

/**
 * Collects the Patterns with Integer id and Long support and converts them to Pattern of Strings based on a
 * reverse feature lookup map.
 */
@Deprecated
public final class IntegerStringOutputConverter

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

/**
 * Collects the {@link Writable} key and {@link Writable} value, and writes them into a {@link SequenceFile}
 * 
 * @param <K>
 * @param <V>
 */

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

/**
 * Collects a string pattern in a MaxHeap and outputs the top K patterns
 * 
 */
@Deprecated
public final class StringOutputConverter implements OutputCollector<String, List<Pair<List<String>, Long>>> {