You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the index only takes up 88MB @jhamman noted that
xarray is converting you list of string into a numpy array of bytestrings. The dimensions of this new array will be len(orig_list) x len(longest_string). So, the resulting array is going to be, potentially, much larger than the 88mb
So, this issue is a request to support my bizarre indexing.
The text was updated successfully, but these errors were encountered:
Ran into a problem writing my xarray to zarr that @jhamman helped me figure out the source of my error.
I had set up an xarray (from a chunked dask array)
Upon trying to write
I would get a memory error
My coordinates for 'snippets' are 800k long and include strings like
While the index only takes up 88MB @jhamman noted that
So, this issue is a request to support my bizarre indexing.
The text was updated successfully, but these errors were encountered: