Stream: dask
Topic: kill persist()?
Stephen Yeager (Jul 08 2021 at 17:16):
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?
Anderson Banihirwe (Jul 08 2021 at 17:43):
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: Jan 30 2022 at 12:01 UTC