Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1259#discussion_r14859597
  
    --- Diff: 
core/src/main/scala/org/apache/spark/scheduler/TaskSetManager.scala ---
    @@ -490,19 +488,19 @@ private[spark] class TaskSetManager(
         info.markSuccessful()
         removeRunningTask(tid)
         sched.dagScheduler.taskEnded(
    -      tasks(index), Success, result.value, result.accumUpdates, info, 
result.metrics)
    +      tasks(index), Success, result.value(), result.accumUpdates, info, 
result.metrics)
         if (!successful(index)) {
           tasksSuccessful += 1
    -      logInfo("Finished TID %s in %d ms on %s (progress: %d/%d)".format(
    -        tid, info.duration, info.host, tasksSuccessful, numTasks))
    +      logInfo("Finished %s:%s (TID %d) in %d ms on %s (%d/%d)".format(
    +        taskSet.id, info.id, info.taskId, info.duration, info.host, 
tasksSuccessful, numTasks))
           // Mark successful and stop if all the tasks have succeeded.
           successful(index) = true
           if (tasksSuccessful == numTasks) {
             isZombie = true
           }
         } else {
    -      logInfo("Ignorning task-finished event for TID " + tid + " because 
task " +
    -        index + " has already completed successfully")
    +      logInfo("Ignorning task-finished event for " + taskSet.id + ":" + 
info.id +
    --- End diff --
    
    Ignorning


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to