sebaap commented on issue #1680: URL: https://github.com/apache/iceberg-python/issues/1680#issuecomment-3334413443
in case it's useful for someone else, in my case the issue was that I didn't have nessie configured properly for rest support. For rest, all the configuration about storage and access to it, needs to be done in the server side (nessie in this case) rather than on the client side like when used without rest api. After configuring nessie properly, this configuration worked fine: ``` catalog = load_catalog( "rest", **{ "type": "rest", "uri": "http://localhost:19120/iceberg", } ) ``` -- 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