forked from zarr-developers/zarr-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_sharding.py
More file actions
1264 lines (1089 loc) · 43.6 KB
/
Copy pathtest_sharding.py
File metadata and controls
1264 lines (1089 loc) · 43.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import enum
import pickle
import warnings
from typing import Any, cast, get_args
from unittest.mock import AsyncMock
import numpy as np
import numpy.typing as npt
import pytest
import zarr
import zarr.api
import zarr.api.asynchronous
from zarr import Array
from zarr.abc.store import Store
from zarr.codecs import (
BloscCodec,
BytesCodec,
Crc32cCodec,
ShardingCodec,
TransposeCodec,
)
from zarr.codecs.sharding import (
INDEX_LOCATION,
MAX_UINT_64,
IndexLocation,
ShardingCodecIndexLocation,
SubchunkWriteOrder,
_ShardIndex,
_ShardReader,
)
from zarr.core.buffer import NDArrayLike, default_buffer_prototype
from zarr.core.indexing import lexicographic_order_coords
from zarr.core.metadata.v3 import ArrayV3Metadata
from zarr.storage import MemoryStore, StorePath, ZipStore
from ..conftest import ArrayRequest
from .test_codecs import _AsyncArrayProxy, order_from_dim
def _reads_are_sync(store_mock: AsyncMock) -> bool:
"""True when the partial-shard read for this store+pipeline goes through the
synchronous methods (get_sync / get_ranges_sync). That requires BOTH the
configured pipeline to be the sync (Fused) one AND the store to support sync
reads — a Fused read against a non-sync store (e.g. ZipStore) falls back to
the async path. Lets the partial-shard-read tests assert the same intent
against whichever method family is actually exercised."""
from zarr.abc.store import SupportsGetSync
from zarr.core.config import config
pipeline_is_sync = "Fused" in config.get("codec_pipeline.path")
# store_mock wraps the real store; check the wrapped class for sync support.
wrapped = getattr(store_mock, "_mock_wraps", store_mock)
return pipeline_is_sync and isinstance(wrapped, SupportsGetSync)
def _index_read_count(store_mock: AsyncMock) -> int:
"""Number of shard-index reads, regardless of sync/async pipeline."""
method = store_mock.get_sync if _reads_are_sync(store_mock) else store_mock.get
return int(method.call_count)
def _range_read_count(store_mock: AsyncMock) -> int:
"""Number of coalesced chunk-data reads, regardless of sync/async pipeline."""
method = store_mock.get_ranges_sync if _reads_are_sync(store_mock) else store_mock.get_ranges
return int(method.call_count)
def _fail_index_read(store_mock: AsyncMock) -> None:
"""Simulate the shard-index load returning nothing, for the active path."""
if _reads_are_sync(store_mock):
store_mock.get_sync.return_value = None
else:
store_mock.get.return_value = None
def _fail_chunk_reads(
store_mock: AsyncMock, key_absent_exc: type[Exception] = FileNotFoundError
) -> None:
"""Simulate chunk-data loads failing (key absent), for the active path.
Async get_ranges raises a BaseExceptionGroup; the sync get_ranges_sync mirrors
that contract, so both inject a FileNotFoundError-bearing group."""
if _reads_are_sync(store_mock):
def fail_sync(key: str, byte_ranges: Any, **kwargs: Any) -> Any:
raise BaseExceptionGroup("chunk read failed", [key_absent_exc(key)])
store_mock.get_ranges_sync = fail_sync
else:
async def fail_async(key: str, byte_ranges: Any, **kwargs: Any) -> Any:
raise BaseExceptionGroup("chunk read failed", [key_absent_exc(key)])
yield # type: ignore[unreachable] # marks this as an async generator
store_mock.get_ranges = fail_async
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(128,) * 1, dtype="uint8", order="C"),
ArrayRequest(shape=(128,) * 2, dtype="uint8", order="C"),
ArrayRequest(shape=(128,) * 3, dtype="uint16", order="F"),
],
indirect=["array_fixture"],
)
@pytest.mark.parametrize("offset", [0, 10])
def test_sharding(
store: Store,
array_fixture: npt.NDArray[Any],
index_location: IndexLocation,
offset: int,
) -> None:
"""
Test that we can create an array with a sharding codec, write data to that array, and get
the same data out via indexing.
"""
data = array_fixture
spath = StorePath(store)
arr = zarr.create_array(
spath,
shape=tuple(s + offset for s in data.shape),
chunks=(32,) * data.ndim,
shards={"shape": (64,) * data.ndim, "index_location": index_location},
dtype=data.dtype,
fill_value=6,
filters=[TransposeCodec(order=order_from_dim("F", data.ndim))],
compressors=BloscCodec(cname="lz4"),
)
write_region = tuple(slice(offset, None) for dim in range(data.ndim))
arr[write_region] = data
if offset > 0:
empty_region = tuple(slice(0, offset) for dim in range(data.ndim))
assert np.all(arr[empty_region] == arr.metadata.fill_value)
read_data = arr[write_region]
assert isinstance(read_data, NDArrayLike)
assert data.shape == read_data.shape
assert np.array_equal(data, read_data)
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("offset", [0, 10])
def test_sharding_scalar(
store: Store,
index_location: IndexLocation,
offset: int,
) -> None:
"""
Test that we can create an array with a sharding codec, write data to that array, and get
the same data out via indexing.
"""
spath = StorePath(store)
arr = zarr.create_array(
spath,
shape=(128, 128),
chunks=(32, 32),
shards={"shape": (64, 64), "index_location": index_location},
dtype="uint8",
fill_value=6,
filters=[TransposeCodec(order=order_from_dim("F", 2))],
compressors=BloscCodec(cname="lz4"),
)
arr[:16, :16] = 10 # intentionally write partial chunks
read_data = arr[:16, :16]
np.testing.assert_array_equal(read_data, 10)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(128,) * 3, dtype="uint16", order="F"),
],
indirect=["array_fixture"],
)
def test_sharding_partial(
store: Store, array_fixture: npt.NDArray[Any], index_location: IndexLocation
) -> None:
data = array_fixture
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=tuple(a + 10 for a in data.shape),
chunks=(32, 32, 32),
shards={"shape": (64, 64, 64), "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
filters=[TransposeCodec(order=order_from_dim("F", data.ndim))],
dtype=data.dtype,
fill_value=0,
)
a[10:, 10:, 10:] = data
read_data = a[0:10, 0:10, 0:10]
assert np.all(read_data == 0)
read_data = a[10:, 10:, 10:]
assert isinstance(read_data, NDArrayLike)
assert data.shape == read_data.shape
assert np.array_equal(data, read_data)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(128,) * 3, dtype="uint16", order="F"),
],
indirect=["array_fixture"],
)
def test_sharding_partial_readwrite(
store: Store, array_fixture: npt.NDArray[Any], index_location: IndexLocation
) -> None:
data = array_fixture
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=data.shape,
chunks=(1, data.shape[1], data.shape[2]),
shards={"shape": data.shape, "index_location": index_location},
dtype=data.dtype,
fill_value=0,
filters=None,
compressors=None,
)
a[:] = data
for x in range(data.shape[0]):
read_data = a[x, :, :]
assert np.array_equal(data[x], read_data)
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(128,) * 3, dtype="uint16", order="F"),
],
indirect=["array_fixture"],
)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_partial_read(
store: Store, array_fixture: npt.NDArray[Any], index_location: IndexLocation
) -> None:
data = array_fixture
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=tuple(a + 10 for a in data.shape),
chunks=(32, 32, 32),
shards={"shape": (64, 64, 64), "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
filters=[TransposeCodec(order=order_from_dim("F", data.ndim))],
dtype=data.dtype,
fill_value=1,
)
read_data = a[0:10, 0:10, 0:10]
assert np.all(read_data == 1)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_multiple_chunks_partial_shard_read(
store: Store,
index_location: IndexLocation,
) -> None:
array_shape = (16, 64)
shard_shape = (8, 32)
chunk_shape = (2, 4)
data = np.arange(np.prod(array_shape), dtype="float32").reshape(array_shape)
store_mock = AsyncMock(wraps=store, spec=store.__class__)
a = zarr.create_array(
StorePath(store_mock),
shape=data.shape,
chunks=chunk_shape,
shards={"shape": shard_shape, "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
dtype=data.dtype,
fill_value=1,
)
a[:] = data
store_mock.reset_mock() # ignore store calls during array creation
# Reads 3 (2 full, 1 partial) chunks each from 2 shards (a subset of both shards)
# for a total of 6 chunks accessed
assert np.allclose(a[0, 22:42], np.arange(22, 42, dtype="float32"))
# 2 shard index reads + 2 coalesced chunk-data reads (one per shard)
assert _index_read_count(store_mock) == 2
assert _range_read_count(store_mock) == 2
store_mock.reset_mock()
# Reads 4 chunks from both shards along dimension 0 for a total of 8 chunks accessed
assert np.allclose(a[:, 0], np.arange(0, data.size, array_shape[1], dtype="float32"))
# 2 shard index reads + 2 coalesced chunk-data reads (one per shard)
assert _index_read_count(store_mock) == 2
assert _range_read_count(store_mock) == 2
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_duplicate_read_indexes(
store: Store,
index_location: IndexLocation,
) -> None:
"""
Check that duplicate index reads are handled correctly when
using get_ranges for chunk data.
"""
array_shape = (15,)
shard_shape = (8,)
chunk_shape = (2,)
data = np.arange(np.prod(array_shape), dtype="float32").reshape(array_shape)
store_mock = AsyncMock(wraps=store, spec=store.__class__)
a = zarr.create_array(
StorePath(store_mock),
shape=data.shape,
chunks=chunk_shape,
shards={"shape": shard_shape, "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
dtype=data.dtype,
fill_value=-1,
)
a[:] = data
store_mock.reset_mock() # ignore store calls during array creation
# Read the same index multiple times from two chunks
indexer = [8, 8, 12, 12]
assert np.array_equal(a[indexer], data[indexer])
# 1 shard index read + 1 coalesced chunk-data read
assert _index_read_count(store_mock) == 1
assert _range_read_count(store_mock) == 1
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_read_empty_chunks_within_non_empty_shard_write_empty_false(
store: Store, index_location: IndexLocation
) -> None:
"""
Case where
- some, but not all, chunks in the last shard are empty
- the last shard is not complete (array length is not a multiple of shard shape),
this takes us down the partial shard read path
- write_empty_chunks=False so the shard index will have fewer entries than chunks in the shard
"""
# array with mixed empty and non-empty chunks in second shard
data = np.array([
# shard 0. full 8 elements, all chunks have some non-fill data
0, 1, 2, 3, 4, 5, 6, 7,
# shard 1. 6 elements (< shard shape)
2, 0, # chunk 0, written
-9, -9, # chunk 1, all fill, not written
4, 5 # chunk 2, written
], dtype="int32") # fmt: off
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=(14,),
chunks=(2,),
shards={"shape": (8,), "index_location": index_location},
dtype="int32",
fill_value=-9,
filters=None,
compressors=None,
config={"write_empty_chunks": False},
)
a[:] = data
assert np.array_equal(a[:], data)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_read_empty_chunks_within_empty_shard_write_empty_false(
store: Store, index_location: IndexLocation
) -> None:
"""
Case where
- all chunks in last shard are empty
- the last shard is not complete (array length is not a multiple of shard shape),
this takes us down the partial shard read path
- write_empty_chunks=False so the shard index will have no entries
"""
fill_value = -99
shard_size = 8
data = np.arange(14, dtype="int32")
data[shard_size:] = fill_value # 2nd shard is all fill value
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=(14,),
chunks=(2,),
shards={"shape": (shard_size,), "index_location": index_location},
dtype="int32",
fill_value=fill_value,
filters=None,
compressors=None,
config={"write_empty_chunks": False},
)
a[:] = data
assert np.array_equal(a[:], data)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_partial_shard_read__index_load_fails(
store: Store, index_location: IndexLocation
) -> None:
"""Test fill value is returned when the call to the store to load the bytes of the shard's chunk index fails."""
array_shape = (16,)
shard_shape = (16,)
chunk_shape = (8,)
data = np.arange(np.prod(array_shape), dtype="float32").reshape(array_shape)
fill_value = -999
store_mock = AsyncMock(wraps=store, spec=store.__class__)
a = zarr.create_array(
StorePath(store_mock),
shape=data.shape,
chunks=chunk_shape,
shards={"shape": shard_shape, "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
dtype=data.dtype,
fill_value=fill_value,
)
a[:] = data
# Loading the index returns None -> simulate an index load failure, on
# whichever read method the active pipeline uses (get / get_sync).
_fail_index_read(store_mock)
# Read from one of two chunks in a shard to test the partial shard read path
assert a[0] == fill_value
assert a[0] != data[0]
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_partial_shard_read__index_chunk_slice_fails(
store: Store,
index_location: IndexLocation,
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""Test fill value is returned when looking up a chunk's byte slice within a shard fails."""
array_shape = (16,)
shard_shape = (16,)
chunk_shape = (8,)
data = np.arange(np.prod(array_shape), dtype="float32").reshape(array_shape)
fill_value = -999
monkeypatch.setattr(
"zarr.codecs.sharding._ShardIndex.get_chunk_slice",
lambda self, chunk_coords: None,
)
a = zarr.create_array(
StorePath(store),
shape=data.shape,
chunks=chunk_shape,
shards={"shape": shard_shape, "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
dtype=data.dtype,
fill_value=fill_value,
)
a[:] = data
# Read from one of two chunks in a shard to test the partial shard read path
assert a[0] == fill_value
assert a[0] != data[0]
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_partial_shard_read__chunk_load_fails(
store: Store, index_location: IndexLocation
) -> None:
"""Test fill value is returned when the call to the store to load a chunk's bytes fails."""
array_shape = (16,)
shard_shape = (16,)
chunk_shape = (8,)
data = np.arange(np.prod(array_shape), dtype="float32").reshape(array_shape)
fill_value = -999
store_mock = AsyncMock(wraps=store, spec=store.__class__)
a = zarr.create_array(
StorePath(store_mock),
shape=data.shape,
chunks=chunk_shape,
shards={"shape": shard_shape, "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
dtype=data.dtype,
fill_value=fill_value,
)
a[:] = data
# Set up store mock after array creation to simulate chunk load failure.
# Index loads still succeed, but chunk-byte loads fail (the coalesced range
# read raises a BaseExceptionGroup containing FileNotFoundError — the same
# shape produced when a key is absent), on whichever read method the active
# pipeline uses (get_ranges / get_ranges_sync).
store_mock.reset_mock()
_fail_chunk_reads(store_mock)
# Read from one of two chunks in a shard to test the partial shard read path
assert a[0] == fill_value
assert a[0] != data[0]
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(128,) * 3, dtype="uint16", order="F"),
],
indirect=["array_fixture"],
)
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_sharding_partial_overwrite(
store: Store, array_fixture: npt.NDArray[Any], index_location: IndexLocation
) -> None:
data = array_fixture[:10, :10, :10]
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=tuple(a + 10 for a in data.shape),
chunks=(32, 32, 32),
shards={"shape": (64, 64, 64), "index_location": index_location},
compressors=BloscCodec(cname="lz4"),
filters=[TransposeCodec(order=order_from_dim("F", data.ndim))],
dtype=data.dtype,
fill_value=1,
)
a[:10, :10, :10] = data
read_data = a[0:10, 0:10, 0:10]
assert np.array_equal(data, read_data)
data += 10
if isinstance(store, ZipStore):
with pytest.warns(UserWarning, match="Duplicate name: "):
a[:10, :10, :10] = data
else:
a[:10, :10, :10] = data
read_data = a[0:10, 0:10, 0:10]
assert np.array_equal(data, read_data)
# Zip storage raises a warning about a duplicate name, which we ignore.
@pytest.mark.filterwarnings("ignore:Duplicate name.*:UserWarning")
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(127, 128, 129), dtype="uint16", order="F"),
],
indirect=True,
)
@pytest.mark.parametrize(
"outer_index_location",
["start", "end"],
)
@pytest.mark.parametrize(
"inner_index_location",
["start", "end"],
)
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_nested_sharding(
store: Store,
array_fixture: npt.NDArray[Any],
outer_index_location: IndexLocation,
inner_index_location: IndexLocation,
) -> None:
data = array_fixture
spath = StorePath(store)
# compressors=None ensures no BytesBytesCodec is added, which keeps
# supports_partial_decode=True and exercises the partial decode path
a = zarr.create_array(
spath,
data=data,
chunks=(64,) * data.ndim,
compressors=None,
serializer=ShardingCodec(
chunk_shape=(32,) * data.ndim,
codecs=[
ShardingCodec(chunk_shape=(16,) * data.ndim, index_location=inner_index_location)
],
index_location=outer_index_location,
),
)
a[:] = data
read_data = a[0 : data.shape[0], 0 : data.shape[1], 0 : data.shape[2]]
assert isinstance(read_data, NDArrayLike)
assert data.shape == read_data.shape
assert np.array_equal(data, read_data)
@pytest.mark.parametrize(
"array_fixture",
[
ArrayRequest(shape=(128,) * 3, dtype="uint16", order="F"),
],
indirect=["array_fixture"],
)
@pytest.mark.parametrize(
"outer_index_location",
["start", "end"],
)
@pytest.mark.parametrize(
"inner_index_location",
["start", "end"],
)
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_nested_sharding_create_array(
store: Store,
array_fixture: npt.NDArray[Any],
outer_index_location: IndexLocation,
inner_index_location: IndexLocation,
) -> None:
data = array_fixture
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=data.shape,
chunks=(32, 32, 32),
dtype=data.dtype,
fill_value=0,
serializer=ShardingCodec(
chunk_shape=(32, 32, 32),
codecs=[ShardingCodec(chunk_shape=(16, 16, 16), index_location=inner_index_location)],
index_location=outer_index_location,
),
filters=None,
compressors=None,
)
a[:] = data
read_data = a[:]
assert np.array_equal(data, read_data)
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_open_sharding(store: Store) -> None:
path = "open_sharding"
spath = StorePath(store, path)
a = zarr.create_array(
spath,
shape=(16, 16),
chunks=(8, 8),
shards=(16, 16),
filters=[TransposeCodec(order=order_from_dim("F", 2))],
compressors=BloscCodec(),
dtype="int32",
fill_value=0,
)
b = Array.open(spath)
assert a.metadata == b.metadata
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
def test_write_partial_sharded_chunks(store: Store) -> None:
data = np.arange(0, 16 * 16, dtype="uint16").reshape((16, 16))
spath = StorePath(store)
a = zarr.create_array(
spath,
shape=(40, 40),
chunks=(10, 10),
shards=(20, 20),
dtype=data.dtype,
compressors=BloscCodec(),
fill_value=1,
)
a[0:16, 0:16] = data
assert np.array_equal(a[0:16, 0:16], data)
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
async def test_delete_empty_shards(store: Store) -> None:
if not store.supports_deletes:
pytest.skip("store does not support deletes")
path = "delete_empty_shards"
spath = StorePath(store, path)
a = await zarr.api.asynchronous.create_array(
spath,
shape=(16, 16),
chunks=(8, 8),
shards=(8, 16),
dtype="uint16",
compressors=None,
fill_value=1,
)
print(a.metadata.to_dict())
await _AsyncArrayProxy(a)[:, :].set(np.zeros((16, 16)))
await _AsyncArrayProxy(a)[8:, :].set(np.ones((8, 16)))
await _AsyncArrayProxy(a)[:, 8:].set(np.ones((16, 8)))
# chunk (0, 0) is full
# chunks (0, 1), (1, 0), (1, 1) are empty
# shard (0, 0) is half-full
# shard (1, 0) is empty
data = np.ones((16, 16), dtype="uint16")
data[:8, :8] = 0
assert np.array_equal(data, await _AsyncArrayProxy(a)[:, :].get())
assert await store.get(f"{path}/c/1/0", prototype=default_buffer_prototype()) is None
chunk_bytes = await store.get(f"{path}/c/0/0", prototype=default_buffer_prototype())
assert chunk_bytes is not None
assert len(chunk_bytes) == 16 * 2 + 8 * 8 * 2 + 4
def test_structured_dtype_fill_value() -> None:
"""Sharded arrays with a structured dtype are writable and readable even though
the fill value is an (unhashable) ``np.void`` scalar: the sharding codec's
chunk-spec caches key on ``ArraySpec``, whose hash must handle void fills
(see https://github.com/zarr-developers/zarr-python/issues/3054)."""
dtype = np.dtype([("a", "i4"), ("b", "f4")])
arr = zarr.create_array(
MemoryStore(),
shape=(8,),
chunks=(2,),
shards=(4,),
dtype=dtype,
fill_value=(1, 2.0),
)
data = np.array([(i, i / 2) for i in range(8)], dtype=dtype)
arr[:4] = data[:4]
expected = np.zeros(8, dtype=dtype)
expected[:4] = data[:4]
expected[4:] = (1, 2.0) # untouched shard reads back as the fill value
assert np.array_equal(arr[:], expected)
def test_pickle() -> None:
"""ShardingCodec round-trips through pickle, including the non-serialized
``subchunk_write_order`` (which ``to_dict`` omits and which must not silently
revert to the ``morton`` default)."""
codec = ShardingCodec(chunk_shape=(8, 8))
assert pickle.loads(pickle.dumps(codec)) == codec
ordered = ShardingCodec(chunk_shape=(8, 8), subchunk_write_order="lexicographic")
restored = pickle.loads(pickle.dumps(ordered))
assert restored == ordered
assert restored.subchunk_write_order == "lexicographic"
@pytest.mark.parametrize("store", ["local", "memory"], indirect=["store"])
@pytest.mark.parametrize("index_location", ["start", "end"])
async def test_sharding_with_empty_inner_chunk(store: Store, index_location: IndexLocation) -> None:
data = np.arange(0, 16 * 16, dtype="uint32").reshape((16, 16))
fill_value = 1
path = f"sharding_with_empty_inner_chunk_{index_location}"
spath = StorePath(store, path)
a = await zarr.api.asynchronous.create_array(
spath,
shape=(16, 16),
chunks=(4, 4),
shards={"shape": (8, 8), "index_location": index_location},
dtype="uint32",
fill_value=fill_value,
)
data[:4, :4] = fill_value
await a.setitem(..., data)
print("read data")
data_read = await a.getitem(...)
assert np.array_equal(data_read, data)
@pytest.mark.parametrize("store", ["local", "memory"], indirect=["store"])
@pytest.mark.parametrize("index_location", ["start", "end"])
@pytest.mark.parametrize("chunks_per_shard", [(5, 2), (2, 5), (5, 5)])
async def test_sharding_with_chunks_per_shard(
store: Store, index_location: IndexLocation, chunks_per_shard: tuple[int]
) -> None:
chunk_shape = (2, 1)
shape = tuple(x * y for x, y in zip(chunks_per_shard, chunk_shape, strict=False))
data = np.ones(np.prod(shape), dtype="int32").reshape(shape)
fill_value = 42
path = f"test_sharding_with_chunks_per_shard_{index_location}"
spath = StorePath(store, path)
a = zarr.create_array(
spath,
shape=shape,
chunks=chunk_shape,
shards={"shape": shape, "index_location": index_location},
dtype="int32",
fill_value=fill_value,
)
a[...] = data
data_read = a[...]
assert np.array_equal(data_read, data)
@pytest.mark.parametrize("store", ["local", "memory"], indirect=["store"])
def test_invalid_metadata(store: Store) -> None:
spath1 = StorePath(store, "invalid_inner_chunk_shape")
with pytest.raises(ValueError):
zarr.create_array(
spath1,
shape=(16, 16),
shards=(16, 16),
chunks=(8,),
dtype=np.dtype("uint8"),
fill_value=0,
)
spath2 = StorePath(store, "invalid_inner_chunk_shape")
with pytest.raises(ValueError):
zarr.create_array(
spath2,
shape=(16, 16),
shards=(16, 16),
chunks=(8, 7),
dtype=np.dtype("uint8"),
fill_value=0,
)
def test_invalid_shard_shape() -> None:
with pytest.raises(
ValueError,
match=(
f"Chunk edge length {16} in dimension {0} is not "
f"divisible by the shard's inner chunk size {9}\\."
),
):
zarr.create_array(
{},
shape=(16, 16),
shards=(16, 16),
chunks=(9, 9),
dtype=np.dtype("uint8"),
fill_value=0,
)
@pytest.mark.parametrize("store", ["local"], indirect=["store"])
def test_sharding_mixed_integer_list_indexing(store: Store) -> None:
"""Regression test for https://github.com/zarr-developers/zarr-python/issues/3691.
Mixed integer/list indexing on sharded arrays should return the same
shape and data as on equivalent chunked arrays.
"""
import numpy as np
data = np.arange(200 * 100 * 10, dtype=np.uint8).reshape(200, 100, 10)
chunked = zarr.create_array(
store,
name="chunked",
shape=(200, 100, 10),
dtype=np.uint8,
chunks=(200, 100, 1),
overwrite=True,
)
chunked[:, :, :] = data
sharded = zarr.create_array(
store,
name="sharded",
shape=(200, 100, 10),
dtype=np.uint8,
chunks=(200, 100, 1),
shards=(200, 100, 10),
overwrite=True,
)
sharded[:, :, :] = data
# Mixed integer + list indexing
c = chunked[0:10, 0, [0, 1]] # type: ignore[index]
s = sharded[0:10, 0, [0, 1]] # type: ignore[index]
assert c.shape == s.shape == (10, 2), ( # type: ignore[union-attr]
f"Expected (10, 2), got chunked={c.shape}, sharded={s.shape}" # type: ignore[union-attr]
)
np.testing.assert_array_equal(c, s)
# Multiple integer axes
c2 = chunked[0, 0, [0, 1, 2]] # type: ignore[index]
s2 = sharded[0, 0, [0, 1, 2]] # type: ignore[index]
assert c2.shape == s2.shape == (3,) # type: ignore[union-attr]
np.testing.assert_array_equal(c2, s2)
# Slice + integer + slice
c3 = chunked[0:5, 1, 0:3]
s3 = sharded[0:5, 1, 0:3]
assert c3.shape == s3.shape == (5, 3) # type: ignore[union-attr]
np.testing.assert_array_equal(c3, s3)
async def stored_data_and_get_order(
codec: ShardingCodec, chunks_per_shard: tuple[int, ...]
) -> list[tuple[int, ...]]:
shard_shape = tuple(c * s for c, s in zip(chunks_per_shard, codec.chunk_shape, strict=True))
store = MemoryStore()
arr = zarr.create_array(
StorePath(store),
shape=shard_shape,
dtype="uint8",
chunks=shard_shape,
serializer=codec,
filters=None,
compressors=None,
fill_value=0,
)
arr[:] = np.arange(np.prod(shard_shape), dtype="uint8").reshape(shard_shape)
shard_buf = await store.get("c/0/0", prototype=default_buffer_prototype())
if shard_buf is None:
raise RuntimeError("data write failed")
index = (await _ShardReader.from_bytes(shard_buf, codec, chunks_per_shard)).index
offset_to_coord: dict[int, tuple[int, ...]] = dict(
zip(
index.get_chunk_slices_vectorized(np.array(list(np.ndindex(chunks_per_shard))))[
0
], # start
list(np.ndindex(chunks_per_shard)), # coord
strict=True,
)
)
# The physical write order is recovered by sorting coordinates by start offset.
return [coord for _, coord in sorted(offset_to_coord.items())]
@pytest.mark.parametrize(
"subchunk_write_order",
get_args(SubchunkWriteOrder),
)
async def test_encoded_subchunk_write_order(subchunk_write_order: SubchunkWriteOrder) -> None:
"""Subchunks must be physically laid out in the shard in the order specified by
``subchunk_write_order``. We verify this by decoding the shard index and sorting
the chunk coordinates by their byte offset. ``unordered`` makes no stable-order
promise, but is deterministic in this implementation, so it is checked the same way."""
# Use a non-square chunks_per_shard so all orderings are distinguishable.
chunks_per_shard = (3, 2)
chunk_shape = (4, 4)
codec = ShardingCodec(
chunk_shape=chunk_shape,
codecs=[BytesCodec()],
index_codecs=[BytesCodec(), Crc32cCodec()],
index_location="end",
subchunk_write_order=subchunk_write_order,
)
actual_order = await stored_data_and_get_order(codec, chunks_per_shard)
expected_order = list(codec._subchunk_order_iter(chunks_per_shard, subchunk_write_order))
assert actual_order == expected_order
@pytest.mark.parametrize(
"subchunk_write_order",
get_args(SubchunkWriteOrder),
)
@pytest.mark.parametrize("do_partial", [True, False], ids=["partial", "complete"])
def test_subchunk_write_order_roundtrip(
subchunk_write_order: SubchunkWriteOrder, do_partial: bool
) -> None:
"""Data written with any ``subchunk_write_order`` must round-trip correctly."""
chunks_per_shard = (3, 2)
chunk_shape = (4, 4)
shard_shape = tuple(c * s for c, s in zip(chunks_per_shard, chunk_shape, strict=True))
data = np.arange(np.prod(shard_shape), dtype="uint16").reshape(shard_shape)
arr = zarr.create_array(
StorePath(MemoryStore()),
shape=shard_shape,
dtype=data.dtype,
chunks=shard_shape,
serializer=ShardingCodec(
chunk_shape=chunk_shape,
codecs=[BytesCodec()],
subchunk_write_order=subchunk_write_order,
),