I ran Clearwater-Riverine (using ClearWater-data) with zarr3 and got the following: ZarrUserWarning: Consolidated metadata is currently not part in the Zarr format 3 specification. It may not be supported by other zarr implementations and may change in the future. warnings.warn(
If we pin to zarr 2 for now, it eliminates the warning:
template_dataset.to_zarr(self.store_path, mode="w", compute=False, zarr_format=2).
I think this is because the Consolidated Metadata feature is considered experimental for v3 stores: https://zarr.readthedocs.io/en/main/user-guide/consolidated_metadata/.
@aufdenkampe, @ptomasula - thoughts on pinning to zarr_format=2 while this is experimental?
I ran Clearwater-Riverine (using ClearWater-data) with
zarr3and got the following:ZarrUserWarning: Consolidated metadata is currently not part in the Zarr format 3 specification. It may not be supported by other zarr implementations and may change in the future. warnings.warn(If we pin to zarr 2 for now, it eliminates the warning:
template_dataset.to_zarr(self.store_path, mode="w", compute=False, zarr_format=2).I think this is because the Consolidated Metadata feature is considered experimental for v3 stores: https://zarr.readthedocs.io/en/main/user-guide/consolidated_metadata/.
@aufdenkampe, @ptomasula - thoughts on pinning to
zarr_format=2while this is experimental?