Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20072#discussion_r160076965
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -263,6 +263,17 @@ object SQLConf {
         .booleanConf
         .createWithDefault(false)
     
    +  val DISK_TO_MEMORY_SIZE_FACTOR = buildConf(
    +    "spark.sql.sources.compressionFactor")
    +    .internal()
    +    .doc("The result of multiplying this factor with the size of data 
source files is propagated " +
    +      "to serve as the stats to choose the best execution plan. In the 
case where the " +
    +      "in-disk and in-memory size of data is significantly different, 
users can adjust this " +
    +      "factor for a better choice of the execution plan. The default value 
is 1.0.")
    +    .doubleConf
    +    .checkValue(_ > 0, "the value of fileDataSizeFactor must be larger 
than 0")
    --- End diff --
    
    BTW `fileDataSizeFactor` -> `compressionFactor`


---

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

Reply via email to