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
Adds a registry for chunk key encodings for extensibility.
2
+
This allows users to implement a custom `ChunkKeyEncoding`, which can be registered via `register_chunk_key_encoding` or as an entry point under `zarr.chunk_key_encoding`.
Copy file name to clipboardExpand all lines: docs/user-guide/config.rst
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,6 @@ Configuration options include the following:
28
28
29
29
- Default Zarr format ``default_zarr_version``
30
30
- Default array order in memory ``array.order``
31
-
- Default filters, serializers and compressors, e.g. ``array.v3_default_filters``, ``array.v3_default_serializer``, ``array.v3_default_compressors``, ``array.v2_default_filters`` and ``array.v2_default_compressor``
32
31
- Whether empty chunks are written to storage ``array.write_empty_chunks``
33
32
- Async and threading options, e.g. ``async.concurrency`` and ``threading.max_workers``
34
33
- Selections of implementations of codecs, codec pipelines and buffers
@@ -62,7 +61,7 @@ This is the current default configuration::
0 commit comments