parthchandra commented on PR #4213: URL: https://github.com/apache/datafusion-comet/pull/4213#issuecomment-4381552760
> @parthchandra Did some investigation on this before this change, No this cannot support the param. `org.apache.hadoop.fs.s3a.auth.ProfileAWSCredentialsProvider` has both `fs.s3a.auth.profile.name` and `fs.s3a.auth.profile.file` The above ws introduced in Hadoop 3.4.2 > > Spark version Default `hadoop.version` > 3.5.0 – 3.5.6 3.3.4 > 4.0.0 / 4.0.1 3.4.1 > master (future release) 3.5.0 > 4.1.0 is the first version which might be affected? While this is default hadoop version compiled against, user could potentially use their own hadoop libs. The native side should be independent of the hadoop versions. The `fs.s3a.*` configs are already forwarded to the native side and in `s3.rs` `get_config_trimmed(configs, bucket, "auth.profile.name")` will get you the value of the config. This can be passed in to `ProfileFileCredentialsProvider::builder()` Maybe you can add that in a follow up? -- 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]
