jinchengchenghh opened a new issue, #11239:
URL: https://github.com/apache/incubator-gluten/issues/11239

   ### Description
   
   Use metadata check to replace. This metadata check will contains all the 
parquet metadata check.
   ```
     val PARQUET_UNEXPECTED_METADATA_FALLBACK_ENABLED =
       buildConf("spark.gluten.sql.fallbackUnexpectedMetadataParquet")
         .doc("If enabled, Gluten will not offload scan when unexpected 
metadata is detected.")
         .booleanConf
         .createWithDefault(false)
   
     val PARQUET_UNEXPECTED_METADATA_FALLBACK_FILE_LIMIT =
       buildConf("spark.gluten.sql.fallbackUnexpectedMetadataParquet.limit")
         .doc("If supplied, metadata of `limit` number of Parquet files will be 
checked to" +
           " determine whether to fall back to java scan.")
         .intConf
         .checkValue(_ > 0, s"must be positive.")
         .createWithDefault(10)
   ```
   
   ### Gluten version
   
   None


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

Reply via email to