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

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

Introduction

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

Usage

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

/**
 * AppEngineJobContext extends Hadoop's JobContext to make extracting
 * information relevant to running a job on AppEngine easier.
 *
 * <p>Essentially, this class handles all reading of configuration variables,
 * delegating appropriately to the configuration or the request state.

From source file com.texeltek.accumulocloudbaseshim.JobContextShim.java

public class JobContextShim extends JobContext {
    private final Configuration shimConfiguration;

    public JobContextShim(Configuration conf) {
        super(conf, null);
        this.shimConfiguration = conf;