Skip to content

Commit

Permalink
[SPARK-32003] Reword debug message.
Browse files Browse the repository at this point in the history
  • Loading branch information
wypoon committed Jun 19, 2020
1 parent 4b18369 commit 0069e71
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1941,7 +1941,8 @@ private[spark] class DAGScheduler(
hostToUnregisterOutputs: Option[String],
maybeEpoch: Option[Long] = None): Unit = {
val currentEpoch = maybeEpoch.getOrElse(mapOutputTracker.getEpoch)
logDebug(s"Removing executor $execId, fileLost: $fileLost, currentEpoch: $currentEpoch")
logDebug(s"Considering removal of executor $execId; " +
s"fileLost: $fileLost, currentEpoch: $currentEpoch")
if (!failedEpoch.contains(execId) || failedEpoch(execId) < currentEpoch) {
failedEpoch(execId) = currentEpoch
logInfo(s"Executor lost: $execId (epoch $currentEpoch)")
Expand Down

0 comments on commit 0069e71

Please sign in to comment.