Github user andrewor14 commented on a diff in the pull request:
https://github.com/apache/spark/pull/1259#discussion_r14859634
--- Diff:
core/src/main/scala/org/apache/spark/scheduler/TaskSetManager.scala ---
@@ -429,9 +425,11 @@ private[spark] class TaskSetManager(
}
val timeTaken = clock.getTime() - startTime
addRunningTask(taskId)
- logInfo("Serialized task %s:%d as %d bytes in %d ms".format(
- taskSet.id, index, serializedTask.limit, timeTaken))
- val taskName = "task %s:%d".format(taskSet.id, index)
+
+ val taskName = "task %s:%d.%d".format(taskSet.id, index,
attemptNum)
--- End diff --
You can just use `"task %s:%s".format(taskSet.id, info.id)` to be
consistent with other places like L494. This could become a little hard to keep
track of if we decide to change the notation.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---