diff --git a/docs/configs.md b/docs/configs.md index 534107481b9..b74ee9f7de0 100644 --- a/docs/configs.md +++ b/docs/configs.md @@ -59,7 +59,7 @@ Name | Description | Default Value spark.rapids.sql.format.orc.read.enabled|When set to false disables orc input acceleration|true spark.rapids.sql.format.orc.write.enabled|When set to false disables orc output acceleration|true spark.rapids.sql.format.parquet.enabled|When set to false disables all parquet input and output acceleration|true -spark.rapids.sql.format.parquet.multiThreadedRead.enabled|When set to true, reads multiple small files within a partition more efficiently by reading each file in a separate thread in parallel on the CPU side before sending to the GPU. Limited by spark.rapids.sql.format.parquet.multiThreadedRead.numThreads and spark.rapids.sql.format.parquet.multiThreadedRead.maxNumFileProcessed|true +spark.rapids.sql.format.parquet.multiThreadedRead.enabled|When set to true, reads multiple small files within a partition more efficiently by reading each file in a separate thread in parallel on the CPU side before sending to the GPU. Limited by spark.rapids.sql.format.parquet.multiThreadedRead.numThreads and spark.rapids.sql.format.parquet.multiThreadedRead.maxNumFilesParallel|true spark.rapids.sql.format.parquet.multiThreadedRead.maxNumFilesParallel|A limit on the maximum number of files per task processed in parallel on the CPU side before the file is sent to the GPU. This affects the amount of host memory used when reading the files in parallel.|2147483647 spark.rapids.sql.format.parquet.multiThreadedRead.numThreads|The maximum number of threads, on the executor, to use for reading small parquet files in parallel. This can not be changed at runtime after the executor has started.|20 spark.rapids.sql.format.parquet.read.enabled|When set to false disables parquet input acceleration|true diff --git a/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala b/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala index 38dde7a997c..ee3575342f6 100644 --- a/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala +++ b/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala @@ -482,7 +482,7 @@ object RapidsConf { "by reading each file in a separate thread in parallel on the CPU side before " + "sending to the GPU. Limited by " + "spark.rapids.sql.format.parquet.multiThreadedRead.numThreads " + - "and spark.rapids.sql.format.parquet.multiThreadedRead.maxNumFileProcessed") + "and spark.rapids.sql.format.parquet.multiThreadedRead.maxNumFilesParallel") .booleanConf .createWithDefault(true)