Skip to content

Commit 3b0e5f7

Browse files
author
Martin Durant
committed
Added to history notes; use chunk_store
1 parent af4a00e commit 3b0e5f7

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

docs/release.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ Next release
1919
documentation.
2020
By :user:`Josh Moore <joshmoore>`; :issue:`571`.
2121

22+
* Added support for generic URL opening by ``fsspec``, where the URLs have the
23+
form "protocol://[server]/path" or can be chained URls with "::" separators.
24+
The additional argument ``storage_options`` is passed to the backend, see
25+
the ``fsspec`` docs.
26+
By :user:`Martin Durant <martindurant>`; :issue:`546`
27+
28+
* Added support for fetching multiple items via ``getitems`` method of a
29+
store, if it exists. This allows for concurrent fetching of data blocks
30+
from stores that implement this; presently HTTP, S3, GCS. Currently only
31+
applies to reading.
32+
By :user:`Martin Durant <martindurant>`; :issue:`606`
2233

2334
.. _release_2.4.0:
2435

zarr/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ def _get_selection(self, indexer, out=None, fields=None):
10211021
check_array_shape('out', out, out_shape)
10221022

10231023
# iterate over chunks
1024-
if not hasattr(self.store, "getitems"):
1024+
if not hasattr(self.chunk_store, "getitems"):
10251025
# sequentially get one key at a time from storage
10261026
for chunk_coords, chunk_selection, out_selection in indexer:
10271027

0 commit comments

Comments
 (0)