Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
0.19.0
-
None
-
None
Description
HADOOP-3864 made the following changes to JobTracker.killJob()
public synchronized void killJob(JobID jobid) { JobInProgress job = jobs.get(jobid); - job.kill(); + if (job.inited()) { + job.kill(); + } }
This is a bug as a job will not get killed if its not yet initialized.
Attachments
Attachments
Issue Links
- blocks
-
HADOOP-4035 Modify the capacity scheduler (HADOOP-3445) to schedule tasks based on memory requirements and task trackers free memory
- Closed