electrum commented on PR #7064: URL: https://github.com/apache/iceberg/pull/7064#issuecomment-1463192830
I tested this out and it works for us. The simple integration where we ignore config is good enough to have everything go through `TrinoFileSystem` and avoid the need for `HadoopFileIO`: ```java icebergCatalogInstance.setFileIOBuilder(config -> new ForwardingFileIo(fileSystemFactory.create(identity))); ``` We can extend this to capture the config for overriding S3 credentials, signer, etc. -- 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]
