MAPREDUCE-3856. Instances of RunningJob class givs incorrect job tracking urls when mutiple jobs are submitted from same client jvm. (Contributed by Eric Payne)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1245276 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d686027c2e
commit
a64046d16f
@ -115,6 +115,10 @@ Release 0.23.2 - UNRELEASED
|
||||
|
||||
MAPREDUCE-3864. Fix cluster setup docs for correct SecondaryNameNode
|
||||
HTTPS parameters. (todd)
|
||||
|
||||
MAPREDUCE-3856. Instances of RunningJob class givs incorrect job tracking
|
||||
urls when mutiple jobs are submitted from same client jvm. (Eric Payne via
|
||||
sseth)
|
||||
|
||||
Release 0.23.1 - 2012-02-08
|
||||
|
||||
|
@ -81,8 +81,7 @@ public class ClientServiceDelegate {
|
||||
private static final Log LOG = LogFactory.getLog(ClientServiceDelegate.class);
|
||||
|
||||
// Caches for per-user NotRunningJobs
|
||||
private static HashMap<JobState, HashMap<String, NotRunningJob>> notRunningJobs =
|
||||
new HashMap<JobState, HashMap<String, NotRunningJob>>();
|
||||
private HashMap<JobState, HashMap<String, NotRunningJob>> notRunningJobs;
|
||||
|
||||
private final Configuration conf;
|
||||
private final JobID jobId;
|
||||
@ -108,6 +107,7 @@ public ClientServiceDelegate(Configuration conf, ResourceMgrDelegate rm,
|
||||
this.jobId = jobId;
|
||||
this.historyServerProxy = historyServerProxy;
|
||||
this.appId = TypeConverter.toYarn(jobId).getAppId();
|
||||
notRunningJobs = new HashMap<JobState, HashMap<String, NotRunningJob>>();
|
||||
}
|
||||
|
||||
// Get the instance of the NotRunningJob corresponding to the specified
|
||||
|
@ -148,10 +148,15 @@ public void testSleepJob() throws IOException, InterruptedException,
|
||||
job.addFileToClassPath(APP_JAR); // The AppMaster jar itself.
|
||||
job.setJarByClass(SleepJob.class);
|
||||
job.setMaxMapAttempts(1); // speed up failures
|
||||
job.waitForCompletion(true);
|
||||
job.submit();
|
||||
String trackingUrl = job.getTrackingURL();
|
||||
String jobId = job.getJobID().toString();
|
||||
boolean succeeded = job.waitForCompletion(true);
|
||||
Assert.assertTrue(succeeded);
|
||||
Assert.assertEquals(JobStatus.State.SUCCEEDED, job.getJobState());
|
||||
Assert.assertTrue("Tracking URL was " + trackingUrl +
|
||||
" but didn't Match Job ID " + jobId ,
|
||||
trackingUrl.endsWith(jobId.substring(jobId.lastIndexOf("_")) + "/"));
|
||||
verifySleepJobCounters(job);
|
||||
verifyTaskProgress(job);
|
||||
|
||||
@ -209,9 +214,15 @@ public void testRandomWriter() throws IOException, InterruptedException,
|
||||
job.addFileToClassPath(APP_JAR); // The AppMaster jar itself.
|
||||
job.setJarByClass(RandomTextWriterJob.class);
|
||||
job.setMaxMapAttempts(1); // speed up failures
|
||||
job.submit();
|
||||
String trackingUrl = job.getTrackingURL();
|
||||
String jobId = job.getJobID().toString();
|
||||
boolean succeeded = job.waitForCompletion(true);
|
||||
Assert.assertTrue(succeeded);
|
||||
Assert.assertEquals(JobStatus.State.SUCCEEDED, job.getJobState());
|
||||
Assert.assertTrue("Tracking URL was " + trackingUrl +
|
||||
" but didn't Match Job ID " + jobId ,
|
||||
trackingUrl.endsWith(jobId.substring(jobId.lastIndexOf("_")) + "/"));
|
||||
|
||||
// Make sure there are three files in the output-dir
|
||||
|
||||
@ -316,9 +327,14 @@ protected Job runFailingMapperJob()
|
||||
new Path(mrCluster.getTestWorkDir().getAbsolutePath(),
|
||||
"failmapper-output"));
|
||||
job.addFileToClassPath(APP_JAR); // The AppMaster jar itself.
|
||||
job.submit();
|
||||
String trackingUrl = job.getTrackingURL();
|
||||
String jobId = job.getJobID().toString();
|
||||
boolean succeeded = job.waitForCompletion(true);
|
||||
Assert.assertFalse(succeeded);
|
||||
|
||||
Assert.assertTrue("Tracking URL was " + trackingUrl +
|
||||
" but didn't Match Job ID " + jobId ,
|
||||
trackingUrl.endsWith(jobId.substring(jobId.lastIndexOf("_")) + "/"));
|
||||
return job;
|
||||
}
|
||||
|
||||
@ -360,8 +376,14 @@ public Void run() throws Exception {
|
||||
// //Job with reduces
|
||||
// Job job = sleepJob.createJob(3, 2, 10000, 1, 10000, 1);
|
||||
job.addFileToClassPath(APP_JAR); // The AppMaster jar itself.
|
||||
job.submit();
|
||||
String trackingUrl = job.getTrackingURL();
|
||||
String jobId = job.getJobID().toString();
|
||||
job.waitForCompletion(true);
|
||||
Assert.assertEquals(JobStatus.State.SUCCEEDED, job.getJobState());
|
||||
Assert.assertTrue("Tracking URL was " + trackingUrl +
|
||||
" but didn't Match Job ID " + jobId ,
|
||||
trackingUrl.endsWith(jobId.substring(jobId.lastIndexOf("_")) + "/"));
|
||||
return null;
|
||||
}
|
||||
});
|
||||
@ -444,7 +466,12 @@ public void testDistributedCache() throws Exception {
|
||||
job.setMaxMapAttempts(1); // speed up failures
|
||||
|
||||
job.submit();
|
||||
String trackingUrl = job.getTrackingURL();
|
||||
String jobId = job.getJobID().toString();
|
||||
Assert.assertTrue(job.waitForCompletion(false));
|
||||
Assert.assertTrue("Tracking URL was " + trackingUrl +
|
||||
" but didn't Match Job ID " + jobId ,
|
||||
trackingUrl.endsWith(jobId.substring(jobId.lastIndexOf("_")) + "/"));
|
||||
}
|
||||
|
||||
private Path createTempFile(String filename, String contents)
|
||||
|
Loading…
Reference in New Issue
Block a user