Replies: 1 comment 1 reply
-
One option is to write them out to files, and then use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This question was started by this stackoverflow thread.
Long story short, I'm noticing that
xr.concat
is crazy slow. I have roughly 45k Datasets that I want to concatenate on a new dimension, and it looks like this concat operation is single threaded and takes many hours to run (I haven't been able to run it to completion yet).I'm not exactly sure what is causing the bottleneck here, or how to speed this up. I'd figure that
xr.concat
should be able to be parallelized, since this should boil down to one big reduce operation.EDIT: weird, I'm noticing that if I only focus on 1k datasets,
xr.concat
is able to actually leverage dask, and complete within minutes.Beta Was this translation helpful? Give feedback.
All reactions