Example usage for org.apache.hadoop.mapreduce Counters Counters

List of usage examples for org.apache.hadoop.mapreduce Counters Counters

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce Counters Counters.

Prototype

public <C extends Counter, G extends CounterGroupBase<C>> Counters(AbstractCounters<C, G> counters) 

Source Link

Document

Construct the Counters object from the another counters object

Usage

From source file:org.apache.crunch.impl.mem.CountersWrapper.java

License:Apache License

CountersWrapper(org.apache.hadoop.mapred.Counters counters) {
    this.active = new Counters(counters);
    allCounters.add(active);
}