adutra commented on issue #2398: URL: https://github.com/apache/polaris/issues/2398#issuecomment-3206212787
The problem imho is that here we are calling `IcebergCatalogHandler.createTableDirect()` since no Access Delegation header is present. But `createTableDirect()` does not generate any table config for S3 access. You coudl maybe try to create the catalog with default table properties: ```sql CREATE CATALOG IF NOT EXISTS my_iceberg_polaris_catalog WITH ( 'type'='iceberg', 'catalog-type'='rest', ... 'table-default.s3.path-style-access'='true' ); ``` If that doesn't help, maybe S3 remote signing could help, but you need to wait for #2280. -- 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]
