You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by yh...@apache.org on 2016/04/16 20:39:53 UTC

spark git commit: [SPARK-14677][SQL] follow up: make max iter num config internal

Repository: spark
Updated Branches:
  refs/heads/master 36da5e323 -> 7319fcc1c


[SPARK-14677][SQL] follow up: make max iter num config internal

## What changes were proposed in this pull request?
This is a follow-up to make the max iteration number an internal config.

## How was this patch tested?
N/A

Author: Reynold Xin <rx...@databricks.com>

Closes #12441 from rxin/maxIterConfInternal.


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

Branch: refs/heads/master
Commit: 7319fcc1cdb000fcde07ccd60748762c16c919a3
Parents: 36da5e3
Author: Reynold Xin <rx...@databricks.com>
Authored: Sat Apr 16 11:39:47 2016 -0700
Committer: Yin Huai <yh...@databricks.com>
Committed: Sat Apr 16 11:39:47 2016 -0700

----------------------------------------------------------------------
 sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/7319fcc1/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala b/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
index e58b717..70e18ce 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
@@ -52,6 +52,7 @@ object SQLConf {
   }
 
   val OPTIMIZER_MAX_ITERATIONS = SQLConfigBuilder("spark.sql.optimizer.maxIterations")
+    .internal()
     .doc("The max number of iterations the optimizer and analyzer runs")
     .intConf
     .createWithDefault(100)


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