Skip to content
Harald Schilly edited this page Nov 30, 2018 · 14 revisions

Notes about running a small Dask/Distributed cluster in a single CoCalc project for prototyping and educational use.

Start cluster

  1. Create a terminal, e.g. dask.term

  2. Use the split buttons at the top right to split it horizontally and vertically into 4 panels.

  3. Start the Scheduler in the first terminal panel

    dask-scheduler
    
  4. Start three works in the other 3 panels

    dask-worker tcp://192.168.62.218:8786 --nthreads 1 --nprocs 1 --memory-limit 300M
    

Connect with a client

...

Clone this wiki locally