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

    https://github.com/apache/spark/pull/15037#discussion_r78261619
  
    --- Diff: core/src/main/scala/org/apache/spark/storage/BlockManager.scala 
---
    @@ -565,8 +565,9 @@ private[spark] class BlockManager(
                 // Give up trying anymore locations. Either we've tried all of 
the original locations,
                 // or we've refreshed the list of locations from the master, 
and have still
                 // hit failures after trying locations from the refreshed list.
    -            throw new BlockFetchException(s"Failed to fetch block after" +
    -              s" ${totalFailureCount} fetch failures. Most recent failure 
cause:", e)
    +            logError(s"Failed to fetch block after $totalFailureCount 
fetch failures." +
    --- End diff --
    
    This log statement corresponds to the case where we've tried to fetch the 
block from all known locations (or `maxFetchFailures` of them) and all of those 
fetches have failed with errors. Failures to fetch from only _one_ location are 
logged at warning level a few lines down from here.
    
    This is probably worth downgrading to a warning to prevent users from 
becoming confused: I've noticed that people sometimes report the first error 
that they find in a log as the cause of a job failure even when the real 
failure occurs elsewhere. Warning level will also help filter this out in 
automated log analysis to search for errors.


---
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.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to