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 we pass numcodecs.Codec objects as the compression and filters arguments to reduce_chunk. This is convenient for the local storage implementation, but does leave us reliant on the numcodecs library in what might be considered our internal "storage backend API".
It would be better to describe these algorithms using a Plain Old Data (POD) type, such as a dict.
Currently we pass
numcodecs.Codec
objects as the compression and filters arguments to reduce_chunk. This is convenient for the local storage implementation, but does leave us reliant on the numcodecs library in what might be considered our internal "storage backend API".It would be better to describe these algorithms using a Plain Old Data (POD) type, such as a dict.
See the original discussion.
As outlined in my proposal, I suggest we use arguments in the following format:
This aligns with the format used in the S3 active storage server API.
The text was updated successfully, but these errors were encountered: