I'd like to use python
to build an app that is similar to zeroMQ
's ventilator / sink scheme
Suppose that we have 10 Workers, all running on the same multi-core server.
Let's say that every 2[sec] or so, each Worker pushes to the Sink a message of size 5[MB]. So, the Sink has to handle a total of 50[MB] ( = 10 x 5[MB] ) every 2[sec] or so.
Had the 10 Workers been on different machines, I know that the network could have been a potential bottleneck.
Had the 10 Workers had to write their data to disk (I/O), I know that the disk could have been a potential bottleneck.
Given the fact that all the 10 Workers are on the same machine, what bottlenecks should one expect?
For example, can the same 10 Workers each push a message of size 10[MB] every 2[sec] or so? Can they push a message of size 20[MB] every 2[sec] or so?
What are zmq
's limitations?
What types of bottlenecks should one expect when using python
and zeroMQ
in a Linux
environment?