nastra commented on issue #8347: URL: https://github.com/apache/iceberg/issues/8347#issuecomment-1683571377
For glue you could try and specify the [client.credentials-provider](https://github.com/apache/iceberg/blob/master/aws/src/main/java/org/apache/iceberg/aws/AwsClientProperties.java#L52). However, I see that you specified a bunch of S3-related **table properties**, which is wrong. Those aren't used in any way. You need to pass them when creating the catalog, meaning that you need to set **catalog properties** instead of **table properties**. See https://iceberg.apache.org/docs/latest/flink-configuration/#catalog-configuration. Given that you want to use `S3FileIO`, you'd set only the ones that exist in https://github.com/apache/iceberg/blob/master/aws/src/main/java/org/apache/iceberg/aws/s3/S3FileIOProperties.java#L43. In your case that would most likely be `s3.access-key-id` / `s3.secret-access-key` / `s3.path-style-access` / `s3.endpoint`. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org