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: [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]