Closed alessandrocornacchia closed 4 months ago
cc @kmpaul @jacobtomlinson
I can confirm I am able to reproduce this on my machine. I'm going to transfer this issue over to dask-mpi
as it seems to be related to how that library is starting up the scheduler.
Ah it looks like you need to explicity specify the dashboard address.
The following works for me:
mpirun -np $SLURM_NTASKS dask-mpi --scheduler-file scheduler.json --dashboard-address :8787
This is a little unintuitive. I'll open a PR to enable it by default and add a flag to disable this, this is the same way dask scheduler
works on the CLI.
I am trying to access the bokeh dashboard in a HPC environment managed by a Slurm scheduler.
I installed
dask_mpi
usingconda
. I ran the following in the Slurm submission script:The scheduler starts correctly, and I can also connect with a
Client
.However, the dashboard returns 404 HTTP error when I try to access its url
Environment:
3.4.1
3.10.14
CentOS Linux 7 (Core)
Additional notes: This does not happen using
dask-jobqueue
, the dashboard runs correctly.