forked from apache/incubator-gluten
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[VL] use velox config lib to extract the configurations from spark (a…
…pache#3694) The PR is to remove the hardcoded check, use velox config lib to get the real config. conf.set('spark.hadoop.fs.s3a.use.instance.credentials',True) ==> conf.set('spark.hadoop.fs.s3a.use.instance.credentials','true') The root cause is that we use got=='true' to check if the flag is set. The PR use velox's config lib to parse the configurations from Spark. True can be set by 'true', 'True', 1, 'ON', 'Y', 'T', etc. limitation: 'KB', 'MB', 'GB' is still not supported, only number is expected
- Loading branch information
Showing
2 changed files
with
79 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters