202203204205206207208
} public LocalJobRunner(Configuration conf) throws IOException { this.fs = FileSystem.get(conf); this.conf = conf; myMetrics = new JobTrackerMetrics(); }
261262263264265266267
} public LocalJobRunner(JobConf conf) throws IOException { this.fs = FileSystem.get(conf); this.conf = conf; myMetrics = new JobTrackerMetrics(new JobConf(conf)); }
313314315316317318319
} public LocalJobRunner(JobConf conf) throws IOException { this.fs = FileSystem.get(conf); this.conf = conf; myMetrics = new JobTrackerMetrics(null, new JobConf(conf)); }
200201202203204205206
308309310311312313314
265266267268269270271