Skip to content

Files

Latest commit

May 27, 2015
5c50550 · May 27, 2015

History

History
11 lines (8 loc) · 443 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 443 Bytes

Easy cluster parallelization in ZeroMQ

This is meant as a support code for this blog post.

TL;DR: two skeletons to dispatch jobs in a cluster using zeromq. The first, bad skeleton is "ventilatorsink" + "worker" (PUSH/PULL). It's not good because it can block if a worker is too long. The good pattern is "master" + "slave" (REQ/REP).

Marc Dupont mdup.fr