-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rest Catalog: catalog.name
should not be part of namespace
#742
Comments
@Fokko do you maybe have some thoughts on this? I am happy to prepare a PR, but would like to get some Feedback first. |
+1, none of the other catalog implementations include the "catalog name" of part of the namespace. |
@sungwy I am on it. Give me a few minutes. Thank you so much for thinking of us! |
Apache Iceberg version
main (development)
Please describe the bug 🐞
This is a harder one:
I am currently unhappy with the way pyiceberg handles the RestCatalogs
name
property.There is one probably undisputed bug here:
iceberg-python/pyiceberg/catalog/rest.py
Line 356 in 20b7b53
In the previous line we cut the first segment of the namespace (presumably because this is the
name
) - even if the warehouse name isNone
. If there warehouse name isNone
, it isn't even added to the identifier namespace:iceberg-python/pyiceberg/catalog/rest.py
Line 464 in 20b7b53
(notice the
if self.name
)Thus, when name is None or "", the first bit of the namespace identifier is removed in L356 (first snippet) wrongly.
If the catalog has a name, we could argue that removing it is correct.
However there is a second Problem:
I would argue that the RestCatalogs name should NEVER be prepended to a Tables namespace identifier in the first place.
And pyiceberg has this opinion too for 50% ;) - unfortunately the namespace provided in the url and in some requests diverge.
With the script at the bottom of this issue I receive the following request to the endpoint POST
http://localhost:8080/catalog/v1/2cb6e8f0-0b7e-11ef-a4fb-c3ca318d8520/namespaces/my_namespace/tables/my_table
(so namespace "my_namespace"):Notice how the namespace provided in the body is different from the namespace in the URL. The URL is not prefixed (due to the [:1] that the path magic function does as seen above), while the body contains a prefixed namespace.
My solution would be to get rid of the name as part of the namespace altogether, thus removing the name prefix here:
iceberg-python/pyiceberg/catalog/rest.py
Line 464 in 20b7b53
And consequently also the remove the [1:] here:
iceberg-python/pyiceberg/catalog/rest.py
Line 356 in 20b7b53
Any thoughts welcome!
My baseline is that at least the URL and the body should match.
My code:
The text was updated successfully, but these errors were encountered: