MAPREDUCE-4642. MiniMRClientClusterFactory should not use job.setJar() (rkanter via tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1382093 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
77805c7ae4
commit
a7998921a7
|
@ -195,6 +195,8 @@ Branch-2 ( Unreleased changes )
|
||||||
|
|
||||||
MAPREDUCE-4629. Remove JobHistory.DEBUG_MODE (Karthik Kambatla via bobby)
|
MAPREDUCE-4629. Remove JobHistory.DEBUG_MODE (Karthik Kambatla via bobby)
|
||||||
|
|
||||||
|
MAPREDUCE-4642. MiniMRClientClusterFactory should not use job.setJar() (rkanter via tucu)
|
||||||
|
|
||||||
Release 2.1.0-alpha - Unreleased
|
Release 2.1.0-alpha - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -58,8 +58,12 @@ public class MiniMRClientClusterFactory {
|
||||||
Job job = Job.getInstance(conf);
|
Job job = Job.getInstance(conf);
|
||||||
|
|
||||||
job.addFileToClassPath(appJar);
|
job.addFileToClassPath(appJar);
|
||||||
String callerJar = JarFinder.getJar(caller);
|
|
||||||
job.setJar(callerJar);
|
Path callerJar = new Path(JarFinder.getJar(caller));
|
||||||
|
Path remoteCallerJar = new Path(testRootDir, callerJar.getName());
|
||||||
|
fs.copyFromLocalFile(callerJar, remoteCallerJar);
|
||||||
|
fs.setPermission(remoteCallerJar, new FsPermission("744"));
|
||||||
|
job.addFileToClassPath(remoteCallerJar);
|
||||||
|
|
||||||
MiniMRYarnCluster miniMRYarnCluster = new MiniMRYarnCluster(caller
|
MiniMRYarnCluster miniMRYarnCluster = new MiniMRYarnCluster(caller
|
||||||
.getName(), noOfNMs);
|
.getName(), noOfNMs);
|
||||||
|
|
Loading…
Reference in New Issue