ad1happy2go commented on issue #9129:
URL: https://github.com/apache/hudi/issues/9129#issuecomment-1621687621

   @ghrahul 
   
   Yes , it gets set internally in the code to true if you are not using spark 
3.3.2.
   
   I see below code which sets this value in BaseFileOnlyRelation.java
   ```
     override def imbueConfigs(sqlContext: SQLContext): Unit = {
       super.imbueConfigs(sqlContext)
       // TODO Issue with setting this to true in spark 332
       if (HoodieSparkUtils.gteqSpark3_4 || !HoodieSparkUtils.gteqSpark3_3_2) {
         
sqlContext.sparkSession.sessionState.conf.setConfString("spark.sql.parquet.enableVectorizedReader",
 "true")
       }
     }
   ```
   
   Can you elaborate on what problem you are facing exactly with using 
vectorized reader


-- 
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]

Reply via email to