I started a background dask computation using .persist() , and it's too slow due to insufficient workers. How do I kill the persist() computation running in the background?
How do I kill the persist() computation running in the background?
You can use the client's .cancel
method:
x = y.persist() .... client.cancel(x)
Last updated: May 16 2025 at 17:14 UTC