1

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?

1 Answer 1

2

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})
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.