to_zarr(path, overwrite=True)? #5103
-
Curious if there is a way to write a zarr store and overwrite it if it already exists? I'm familiar with overwrite=True when writing parquet files with dask |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Zarr stores use the |
Beta Was this translation helpful? Give feedback.
-
In dask it looks as though it simply does I imaging @jakirkham's solution is probably more effective but I can try and put in a PR using the dask method as a first pass. |
Beta Was this translation helpful? Give feedback.
-
You can achieve this today by explicitly passing Per the docstring, the default behavior is |
Beta Was this translation helpful? Give feedback.
You can achieve this today by explicitly passing
mode='w'
intoto_zarr()
.Per the docstring, the default behavior is
mode='w-'
, which is "fail if exists"