Turning My Laptops into a Dask Distributed Cluster
thejeshgn.com·2d
🌊Seastar Framework
Preview
Report Post

I wanted a distributed system where the client submitting the job has the code and logic, but the workers don’t. They just execute the workload they get. I had used Dask in the LocalCluster mode, where everything runs on the same computer but in different processes/threads. It works well, and I have used it a bunch of times. But this time, I wanted many heterogeneous computing systems to come together and execute the work aka Dask Distributed.

Introduction

I knew Dask supports this through a scheduler and worker model. But I had not tried this. So I did, and it works pretty well. But you need to take care of some additional stuff.

  1. The client, scheduler, and workers should all use the same version of Pyth…

Similar Posts

Loading similar posts...