Details
-
Bug
-
Status: Patch Available
-
Trivial
-
Resolution: Unresolved
-
0.7.0
-
None
-
None
Description
In JonInProgress, it's possble to get Exception in initTasks().
this.tasks = new TaskInProgress[numBSPTasks]; for (int i = 0; i < splits.length; i++) { tasks[i] = new TaskInProgress(getJobID(), this.jobFile.toString(), splits[i], this.conf, this, i); }
I'm not sure that numBSPTask is always bigger than splits.length.
So, I think it's better to use bigger value to assign the tasks array.