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
Currently, open_zarr has two possible chunking behaviors. auto_chunk=True (default) creates dask chunks corresponding with zarr chunks. auto_chunk=False creates no chunks. But what if you want to manually specify the chunks, as with open_dataset(chunks=...). open_zarr could easily support this, but it does not currently.
Note that this is not the same as calling .chunk() post dataset creation. That operation is very inefficient, since it begins from a single global chunk for each variable.
The text was updated successfully, but these errors were encountered:
Currently,
open_zarr
has two possible chunking behaviors.auto_chunk=True
(default) creates dask chunks corresponding with zarr chunks.auto_chunk=False
creates no chunks. But what if you want to manually specify the chunks, as withopen_dataset(chunks=...)
.open_zarr
could easily support this, but it does not currently.Note that this is not the same as calling
.chunk()
post dataset creation. That operation is very inefficient, since it begins from a single global chunk for each variable.The text was updated successfully, but these errors were encountered: