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 <[email protected]> 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 <[email protected]> Authored: Sat Apr 16 11:39:47 2016 -0700 Committer: Yin Huai <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
