JobTracker.killJob() fails to kill a job if the job is not yet initialized
--------------------------------------------------------------------------
Key: HADOOP-4236
URL: https://issues.apache.org/jira/browse/HADOOP-4236
Project: Hadoop Core
Issue Type: Bug
Components: mapred
Reporter: Amar Kamat
Priority: Blocker
HADOOP-3864 made the following changes to {{JobTracker.killJob()}}
{code}
public synchronized void killJob(JobID jobid) {
JobInProgress job = jobs.get(jobid);
- job.kill();
+ if (job.inited()) {
+ job.kill();
+ }
}
{code}
This is a bug as a job will not get killed if its not yet initialized.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.