Example usage for org.apache.hadoop.mapreduce MRJobConfig JOB_CONF_FILE

List of usage examples for org.apache.hadoop.mapreduce MRJobConfig JOB_CONF_FILE

Introduction

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

Prototype

String JOB_CONF_FILE

To view the source code for org.apache.hadoop.mapreduce MRJobConfig JOB_CONF_FILE.

Click Source Link

Usage

From source file:org.apache.ignite.internal.processors.hadoop.GridHadoopUtils.java

License:Apache License

/**
 * Gets job file.//www .  j a  va 2 s. c  o m
 *
 * @param conf Configuration.
 * @param usr User.
 * @param jobId Job ID.
 * @return Job file.
 */
public static Path jobFile(Configuration conf, String usr, JobID jobId) {
    return new Path(stagingAreaDir(conf, usr), jobId.toString() + Path.SEPARATOR + MRJobConfig.JOB_CONF_FILE);
}