We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204dda1 commit e9db616Copy full SHA for e9db616
1 file changed
src/zarr/core/codec_pipeline.py
@@ -212,6 +212,16 @@ class BatchedCodecPipeline(CodecPipeline):
212
array_array_codecs: tuple[ArrayArrayCodec, ...]
213
array_bytes_codec: ArrayBytesCodec
214
bytes_bytes_codecs: tuple[BytesBytesCodec, ...]
215
+ batch_size: int | None = None
216
+
217
+ def __post_init__(self) -> None:
218
+ if self.batch_size is not None:
219
+ warn(
220
+ "The 'batch_size' parameter is deprecated and has no effect. "
221
+ "Batch size is now determined automatically.",
222
+ FutureWarning,
223
+ stacklevel=2,
224
+ )
225
226
@property
227
def _all_sync(self) -> bool:
0 commit comments