Example usage for org.apache.hadoop.mapred LocalJobRunner LocalJobRunner

List of usage examples for org.apache.hadoop.mapred LocalJobRunner LocalJobRunner

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred LocalJobRunner LocalJobRunner.

Prototype

@Deprecated
    public LocalJobRunner(JobConf conf) throws IOException 

Source Link

Usage

From source file:org.apache.falcon.unit.LocalFalconClientProtocolProvider.java

License:Apache License

private synchronized LocalJobRunner getLocalJobRunner(Configuration conf) throws IOException {
    if (localJobRunner == null) {
        localJobRunner = new LocalJobRunner(conf);
    }// www .  j  ava2  s.c  o  m
    return localJobRunner;
}