Repository: spark
Updated Branches:
  refs/heads/master 9b1e1f20d -> b9fe504b4


[SPARK-6448] Make history server log parse exceptions

This helped me to debug a parse error that was due to the event log format 
changing recently.

Author: Ryan Williams <ryan.blake.willi...@gmail.com>

Closes #5122 from ryan-williams/histerror and squashes the following commits:

5831656 [Ryan Williams] line length
c3742ae [Ryan Williams] Make history server log parse exceptions


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b9fe504b
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b9fe504b
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b9fe504b

Branch: refs/heads/master
Commit: b9fe504b497cfa509310b4045de4873739c76667
Parents: 9b1e1f2
Author: Ryan Williams <ryan.blake.willi...@gmail.com>
Authored: Sun Mar 22 11:54:23 2015 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Sun Mar 22 11:54:23 2015 +0000

----------------------------------------------------------------------
 .../scala/org/apache/spark/deploy/history/FsHistoryProvider.scala | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/b9fe504b/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
----------------------------------------------------------------------
diff --git 
a/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala 
b/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
index 7fde020..db7c499 100644
--- 
a/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
+++ 
b/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
@@ -233,7 +233,8 @@ private[history] class FsHistoryProvider(conf: SparkConf) 
extends ApplicationHis
       } catch {
         case e: Exception =>
           logError(
-            s"Exception encountered when attempting to load application log 
${fileStatus.getPath}")
+            s"Exception encountered when attempting to load application log 
${fileStatus.getPath}",
+            e)
           None
       }
     }.toSeq.sortWith(compareAppInfo)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to