I am using dask client in local. The problem is when the task is finished I still have in memory a lot of python instance even if I use local scheduler. This is what I am doing:
x.compute(get=dask.get)
from dask.distributed import Client
client = Client() # Starts local cluster
x.compute()
If I run this several time I will end up with several python.exe in my processes (on windows). Any way to prevent this?
Thanks
You can close a client with the
client.close()
method.You can also use a context manager