I use the following to create a local cluster from a Jupyter notebook :
from dask.distributed import Client, LocalCluster
cluster = LocalCluster(n_workers=24)
c = Client(cluster)
Is it possible to connect from another notebook when the kernel is occupied (compute operation) ?
My goal is to access to 'total_occupancy' for example.