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
When decompressing zarr chunks we got this message from JBlosc:
blosc: shuffle type not supported: '-1'; expected one of 0 (NOSHUFFLE),1 (BYTESHUFFLE),2 (BITSHUFFLE)
According to this document, -1 is AUTOSHUFFLE. There, bit-shuffle will be used for buffers with itemsize 1, and byte-shuffle will be used otherwise. The default is SHUFFLE.
If AUTOSHUFFLE, bit-shuffle will be used for buffers with itemsize 1, and byte-shuffle will be used otherwise. The default is SHUFFLE.
We should either update to a Blosc lib that supports this AUTOSHUFFLE directly or mutate its input so that we do the byteshuffle-bitshuffle switch as described by this specification.
When decompressing zarr chunks we got this message from JBlosc:
blosc: shuffle type not supported: '-1'; expected one of 0 (NOSHUFFLE),1 (BYTESHUFFLE),2 (BITSHUFFLE)
According to this document, -1 is AUTOSHUFFLE. There, bit-shuffle will be used for buffers with itemsize 1, and byte-shuffle will be used otherwise. The default is SHUFFLE.
If AUTOSHUFFLE, bit-shuffle will be used for buffers with itemsize 1, and byte-shuffle will be used otherwise. The default is SHUFFLE.
We should either update to a Blosc lib that supports this AUTOSHUFFLE directly or mutate its input so that we do the byteshuffle-bitshuffle switch as described by this specification.
Context and example zarr dataset: https://scm.slack.com/archives/C02H5T8Q08P/p1738766454436339
The text was updated successfully, but these errors were encountered: