Example usage for org.apache.hadoop.mapreduce StatusReporter subclass-usage

List of usage examples for org.apache.hadoop.mapreduce StatusReporter subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce StatusReporter subclass-usage.

Usage

From source file com.google.appengine.tools.mapreduce.DatastorePersistingStatusReporter.java

/**
 * A Hadoop StatusReporter that saves reported data to a {@link ShardState}.
 *
 */
public class DatastorePersistingStatusReporter extends StatusReporter {
    private static final Logger log = Logger.getLogger(DatastorePersistingStatusReporter.class.getName());

From source file com.knewton.mapreduce.DoNothingStatusReporter.java

public class DoNothingStatusReporter extends StatusReporter {

    @Override
    public Counter getCounter(Enum<?> arg0) {
        return null;
    }

From source file com.marklogic.contentpump.ContentPumpReporter.java

/**
 * Reporter for Content Pump.
 *
 */
public class ContentPumpReporter extends StatusReporter {
    public static final Log LOG = LogFactory.getLog(ContentPumpReporter.class);

From source file com.tuplejump.calliope.hadoop.ReporterWrapper.java

/**
 * A reporter that works with both mapred and mapreduce APIs.
 */
public class ReporterWrapper extends StatusReporter implements Reporter {
    private Reporter wrappedReporter;

From source file org.apache.accumulo.examples.wikisearch.ingest.StandaloneStatusReporter.java

public class StandaloneStatusReporter extends StatusReporter {

    private Counters c = new Counters();

    private long filesProcessed = 0;
    private long recordsProcessed = 0;

From source file org.apache.accumulo.examples.wikisearch.logic.StandaloneStatusReporter.java

public class StandaloneStatusReporter extends StatusReporter {

    private Counters c = new Counters();

    private long filesProcessed = 0;
    private long recordsProcessed = 0;

From source file org.apache.cassandra.hadoop.ReporterWrapper.java

/**
 * A reporter that works with both mapred and mapreduce APIs.
 */
public class ReporterWrapper extends StatusReporter implements Reporter {
    private Reporter wrappedReporter;

From source file org.apache.hcatalog.mapreduce.ProgressReporter.java

class ProgressReporter extends StatusReporter implements Reporter {

    private TaskInputOutputContext context = null;
    private TaskAttemptContext taskAttemptContext = null;

    public ProgressReporter(TaskAttemptContext context) {

From source file org.apache.hive.hcatalog.mapreduce.ProgressReporter.java

class ProgressReporter extends StatusReporter implements Reporter {

    private TaskInputOutputContext context = null;
    private TaskAttemptContext taskAttemptContext = null;

    public ProgressReporter(TaskAttemptContext context) {

From source file org.apache.mahout.common.DummyStatusReporter.java

public final class DummyStatusReporter extends StatusReporter {

    private final Map<Enum<?>, Counter> counters = Maps.newHashMap();
    private final Map<String, Counter> counterGroups = Maps.newHashMap();

    private static Counter newCounter() {