Scheduler¶
https://docs.dask.org/en/latest/scheduling.html
https://dask.pydata.org/en/latest/scheduler-overview.html#configuring-the-schedulers
schedulers¶
threaded(threads): a scheduler backed by a thread poolprocesses(processes): a scheduler backed by a process poolsynchronous(single-threaded): a synchronous scheduler, good for debuggingdistributed(distributed): a distributed scheduler for executing graphs on multiple machines
synchronous scheduler¶
good for debugging