Skip to content

Commit

Permalink
[SPARK-22159][SQL] Make config names consistently end with "enabled".
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?
spark.sql.execution.arrow.enable and spark.sql.codegen.aggregate.map.twolevel.enable -> enabled

## How was this patch tested?
N/A

Author: Reynold Xin <rxin@databricks.com>

Closes #19384 from rxin/SPARK-22159.
  • Loading branch information
rxin authored and gatorsmile committed Sep 28, 2017
1 parent d74dee1 commit d29d1e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ object SQLConf {
.createWithDefault(40)

val ENABLE_TWOLEVEL_AGG_MAP =
buildConf("spark.sql.codegen.aggregate.map.twolevel.enable")
buildConf("spark.sql.codegen.aggregate.map.twolevel.enabled")
.internal()
.doc("Enable two-level aggregate hash map. When enabled, records will first be " +
"inserted/looked-up at a 1st-level, small, fast map, and then fallback to a " +
Expand Down Expand Up @@ -908,7 +908,7 @@ object SQLConf {
.createWithDefault(false)

val ARROW_EXECUTION_ENABLE =
buildConf("spark.sql.execution.arrow.enable")
buildConf("spark.sql.execution.arrow.enabled")
.internal()
.doc("Make use of Apache Arrow for columnar data transfers. Currently available " +
"for use with pyspark.sql.DataFrame.toPandas with the following data types: " +
Expand Down

0 comments on commit d29d1e8

Please sign in to comment.