Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hama Wiki" for change notification.
The "TaskInProgress" page has been changed by ChiaHungLin: https://wiki.apache.org/hama/TaskInProgress?action=diff&rev1=2&rev2=3 int partition; <<BR>> TaskID id; <<BR>> --(JobInProgress job;// TaskInProgress is contained within JobInProgress.)-- <<BR>> - int completes = 0;// change to Boolean. so it also indicates if this task successes. <<BR>> + --(int completes = 0;// change to Boolean. so it also indicates if this task successes.)-- <<BR>> + Boolean completed = false; // true indicates this task is successfully executed. <<BR>> --(GroomServerStatus myGroomStatus;)-- <<BR>> String groom; // to which groom this task belongs. <<BR>> long startTime = -1; <<BR>> - private int successEventNumber = -1; <<BR>> + --(private int successEventNumber = -1;)-- <<BR>> - // The 'next' usable taskid of this tip - int nextTaskId = 0; <<BR>> + --(int nextTaskId = 0; // should be calculated at runtime.)-- <<BR>> + + --(TaskAttemptID successfulTaskId;// see completed.)-- <<BR>> + + --(TaskAttemptID firstTaskId;// the first task stored in 2d task array. // see job task relation section)-- <<BR>> + + --(TaskAttemptID currentTaskId;// the last task in 2d task array should be the current execution task. // see job task relation section)-- + +
