Reputation: 57301
When using Dask normally things work fine. However, when I use Dask with an adaptive cluster I find that sometimes all the tasks get assigned to a single worker. Why is this?
Upvotes: 1
Views: 130
Reputation: 57301
This should be considered a usability bug, and it would be reasonable to file an issue about it.
However, to explain what is going on (at least today 2018-08-09) probably what happens is that
Ideally, the load balancing heuristics should handle the situation. There were older versions of Dask where this performed less well, but usually this is fine. I recommend first updating your version of the dask
and distributed
packages to the newest possible releases and if that doesn't work, report an issue with a minimal example if possible.
Upvotes: 1