You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Magic-Ludo opened this issue
Jul 29, 2024
· 2 comments
Labels
bugThe code is not performing according to the design or a design flaw is seriously impacting users.redesignIt may be flawed, but the code was working as designed.zarrzarr format related.
I recently wanted to test the new feature that allows us to write zarr files (I've replaced precomputed:// by zarr:// in the above code), which avoids generating a huge number of files. However, I'm encountering this error:
I don't know if it's the way I inject my data into the volume, but since this feature is new, I have the impression that the problem goes deeper than that.
Thanks for your help!
The text was updated successfully, but these errors were encountered:
william-silversmith
added
the
bug
The code is not performing according to the design or a design flaw is seriously impacting users.
label
Jul 29, 2024
Thank you for pointing out the issues. I pushed a fix to master for the first bug. I'll look into the second but here are some things to consider:
zarr does not generate fewer files than precomputed unless we are talking about > 4D files. Precomputed has a sharded format that will generate many fewer files than zarr. see: https://github.com/seung-lab/cloud-volume/wiki/Creating-a-Sharded-Image-from-Scratch (note: these operations can be performed without Igneous now, I should update the wiki article).
The implementation of zarr in CV is custom and was written specifically for 5D timeseries, color 3D spatial volumes. I should probably update it to be a bit more general.
You could consider using a larger chunk size to reduce the number of files.
bugThe code is not performing according to the design or a design flaw is seriously impacting users.redesignIt may be flawed, but the code was working as designed.zarrzarr format related.
Hi,
I use the following code to create precomputed files from a list of
.tif
images:I recently wanted to test the new feature that allows us to write zarr files (I've replaced
precomputed://
byzarr://
in the above code), which avoids generating a huge number of files. However, I'm encountering this error:I tried to change line 230 in the
cloudvolume/datasource/zarr/image.py
file:But now another error occurs:
I don't know if it's the way I inject my data into the volume, but since this feature is new, I have the impression that the problem goes deeper than that.
Thanks for your help!
The text was updated successfully, but these errors were encountered: