-
-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Raise a better error when an array/store already exists #605
Comments
I think the problem is that the store may not be a filesystem, so there may not be files. The code that fails is not aware whether or not the zarr hierarchy is filesystem base or not; so raising a "FileExistsError" does not make sens. |
Some potential solutions without knowing the codebase well:
|
Just +1 @eric-czech's point here, it would be nice to have a more specific error here than a ValueError (even if it's not a FileExistsError). |
👍 We often hit these errors with cloud storage (e.g. s3fs) and users get very confused. @eric-czech's suggestions make sense to me. |
#590 from 3 weeks ago does already include subclasses of ValueError with more informative names and make the stacktrace more explicit as to where the error come from. Though we do need to remove the helper function in favor of custom exception and I'm was waiting for #546 to get in as it did conflict and was bigger. Once this is in we can more precise error messages, but there will still be some layer of indirection with the store. |
It would be helpful for users and downstream libraries if the error thrown when attempting to create an array that already exists on disk was more specific. For example, this error isn't very clear and it isn't easy to wrap in error handling logic:
This could perhaps raise a FileExistsError or at least include a message that describes the condition more clearly.
The text was updated successfully, but these errors were encountered: