Closed abarciauskas-bgse closed 1 year ago
I've opened an issue in pangeo-forge about this https://github.com/pangeo-forge/pangeo-forge-recipes/issues/554
But for now will probably use this code: https://github.com/developmentseed/tile-benchmarking/blob/feat/dont_chunk_coordinates/profiling/cmip6_zarr/rechunking.ipynb to produce zarr stores
Closing this for now as the issue is with pangeo-forge and being worked on in https://github.com/pangeo-forge/pangeo-forge-recipes/pull/556
Right now, xarray's
open_zarr
andopen_dataset
are significantly slower when coordinates are chunked as all coordinate chunks result in a request to S3.Is it possible to either
Note: I tried
decode_coords=False
and the same issue results.Related: https://github.com/pydata/xarray/issues/6633 https://github.com/pydata/xarray/pull/7368 https://discourse.pangeo.io/t/puzzling-s3-xarray-open-zarr-latency/1074/11
From @maxrjones