Github user andrewor14 commented on a diff in the pull request:
https://github.com/apache/spark/pull/1259#discussion_r14859639
--- Diff:
core/src/main/scala/org/apache/spark/scheduler/TaskSetManager.scala ---
@@ -521,14 +519,13 @@ private[spark] class TaskSetManager(
info.markFailed()
val index = info.index
copiesRunning(index) -= 1
- if (!isZombie) {
- logWarning("Lost TID %s (task %s:%d)".format(tid, taskSet.id, index))
- }
var taskMetrics : TaskMetrics = null
- var failureReason: String = null
+
+ val failureReason = s"Lost task ${taskSet.id}:$index (TID $tid) on
executor ${info.host}: " +
--- End diff --
I think instead of `$index` you meant `${info.id}`
---
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.
---