-
-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebalance with dask.array fails #3833
Comments
Looks related to #3670 |
I am able to reproduce this on master. I've opened #3834 because we should be getting a However I'm not certain the keys are actually missing because running the rebalance again succeeds, and I am also able to call An unpleasant workaround for this example is: try:
client.rebalance()
except:
client.rebalance() |
I'm getting the updated error message but the problem still persists in distributed 2.26:
|
Does a second call to rebalance still succeed? |
Closing as duplicate of #4906 |
Hi, I am trying to rebalance a dask array evenly across workers with the following script:
This results in:
I am aware that the way I am loading data is not necessarily optimal. I specifically want to address the case where the data comes via numpy to dask.array and needs to be rebalanced before significant work is done on each worker (xgboost training).
The text was updated successfully, but these errors were encountered: