You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by fe...@apache.org on 2017/01/12 17:45:21 UTC

spark git commit: [SPARK-12757][CORE] lower "block locks were not released" log to info level

Repository: spark
Updated Branches:
  refs/heads/master c6c37b8af -> 2bc4d4e28


[SPARK-12757][CORE] lower "block locks were not released" log to info level

## What changes were proposed in this pull request?

lower "block locks were not released" log to info level, as it is generating a lot of warnings in running ML, graph calls, as pointed out in the JIRA.

Author: Felix Cheung <fe...@hotmail.com>

Closes #16513 from felixcheung/blocklockswarn.


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

Branch: refs/heads/master
Commit: 2bc4d4e286e65f8b4e9ee21bccd913b62e6061f2
Parents: c6c37b8
Author: Felix Cheung <fe...@hotmail.com>
Authored: Thu Jan 12 09:45:16 2017 -0800
Committer: Felix Cheung <fe...@apache.org>
Committed: Thu Jan 12 09:45:16 2017 -0800

----------------------------------------------------------------------
 core/src/main/scala/org/apache/spark/executor/Executor.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/2bc4d4e2/core/src/main/scala/org/apache/spark/executor/Executor.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/org/apache/spark/executor/Executor.scala b/core/src/main/scala/org/apache/spark/executor/Executor.scala
index 789198f..b6c0f0c 100644
--- a/core/src/main/scala/org/apache/spark/executor/Executor.scala
+++ b/core/src/main/scala/org/apache/spark/executor/Executor.scala
@@ -336,7 +336,7 @@ private[spark] class Executor(
             if (conf.getBoolean("spark.storage.exceptionOnPinLeak", false)) {
               throw new SparkException(errMsg)
             } else {
-              logWarning(errMsg)
+              logInfo(errMsg)
             }
           }
         }


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