viirya commented on a change in pull request #33695:
URL: https://github.com/apache/spark/pull/33695#discussion_r688692921
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
##########
@@ -897,6 +897,13 @@ object SQLConf {
.booleanConf
.createWithDefault(true)
+ val PARQUET_VECTORIZED_READER_NESTED_COLUMN_ENABLED =
+ buildConf("spark.sql.parquet.enableNestedColumnVectorizedReader")
+ .doc("Enables vectorized Parquet decoding for nested columns (e.g.,
struct, list, map).")
+ .version("3.3.0")
+ .booleanConf
+ .createWithDefault(false)
Review comment:
If we want to have it, default as true sounds better as it will be
tested by default. We still have time to disable it before it is actually
released.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]