Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v3] Develop ZipStore #2010

Open
jhamman opened this issue Jul 3, 2024 · 0 comments · May be fixed by #2078
Open

[v3] Develop ZipStore #2010

jhamman opened this issue Jul 3, 2024 · 0 comments · May be fixed by #2078
Labels
V3 Related to compatibility with V3 spec
Milestone

Comments

@jhamman
Copy link
Member

jhamman commented Jul 3, 2024

In Zarr-Python 2, we had the ZipStore. This hasn't been implemented yet in v3 but will need to be before the 3.0 release.

Fsspec has a ZipStore but I don't think it has an async interface so I think we should implement our own. Some design thought will be needed here to get locking/etc. right.

The intended behavior is something like this:

import zarr

store = zarr.ZipStore('data/example.zip', mode='w')
root = zarr.group(store=store)
z = root.zeros('foo/bar', shape=(1000, 1000), chunks=(100, 100), dtype='i4')
z[:] = 42
store.close()
@jhamman jhamman added the V3 Related to compatibility with V3 spec label Jul 4, 2024
@jhamman jhamman linked a pull request Aug 10, 2024 that will close this issue
6 tasks
@jhamman jhamman added this to the 3.0.0 milestone Aug 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
V3 Related to compatibility with V3 spec
Projects
Status: In Progress
Development

Successfully merging a pull request may close this issue.

1 participant