Reputation: 255
For a reason specific to my build system I cannot currently run dask-scheduler CLI - I have to start scheduler from code (example is provided in dask.distributed documentation). Is there also a way to start and customize (i.e. choose port) the Web GUI for the scheduler?
Upvotes: 1
Views: 430
Reputation: 57251
When starting up the scheduler you can pass a services=
keyword
from distributed.scheduler import Scheduler
from distributed.bokeh.scheduler import BokehScheduler
scheduler = Scheduler(..., services={('bokeh', 8787): BokehScheduler})
Upvotes: 2