write multiple chunks into one single file
in my case, I want to save array into chunks, but I don't want them saved as split files 0.0, 1.0, 2.0 .... Is there any way to write multiple chunks into a file named f"{version}.data", and write meta info into f"{version}.meta", which can be more easily to manage data/meta objects.
There isn't a format supported by tensorstore that works exactly like that, but the OCDBT format (https://google.github.io/tensorstore/kvstore/ocdbt/index.html) does something similar and might suit your needs.
Not to spam but Just linking to #57 here for future reference.
Isn't that what zarr v3 sharding and the OCDBT format for as @jbms suggested?