ndrluis commented on issue #974: URL: https://github.com/apache/iceberg-python/issues/974#issuecomment-2254259875
As a workaround, you can define the S3 configurations (endpoint, secret access key, and access key ID) in the load_rest method. ```python catalog = load_rest( name="rest", conf={ "uri": "http://localhost:8181/", "s3.endpoint": "http://localhost:9000", "s3.access-key-id": "admin", "s3.secret-access-key": "password", }, ) ``` For some reason, the iceberg-rest-image does not return the overrides in the getConfig endpoint. If you test with Tabular or other catalogs, you will not have this problem. -- 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