Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于特定于我的构建系统的原因,我目前无法运行 dask-scheduler CLI - 我必须从代码启动调度程序(示例在 dask.distributed 文档中提供)。还有一种方法可以为调度程序启动和自定义(即选择端口)Web GUI 吗?
启动调度程序时,您可以传递services=关键字
services=
from distributed.scheduler import Scheduler from distributed.bokeh.scheduler import BokehScheduler scheduler = Scheduler(..., services={('bokeh', 8787): BokehScheduler})