Re: [zeromq-dev] pub/sub pattern

2017-12-05 Thread Stephen Riesenberg
It obviously gets complicated in a hurry, but to add to that: Can you create a broker per scaling group, which subscribes to the relevant topic and uses push sockets to load balance automagically to workers? It shouldn’t get overloaded if it’s just shuffling messages though it’s always possible, a

Re: [zeromq-dev] pub/sub pattern

2017-12-05 Thread Luca Boccassi
On Tue, 2017-12-05 at 09:03 +0100, Gyorgy Szekely wrote: > Hi ZeroMQ community, > In our application we use ZeroMQ for communication between backend > services > and it works quite well (thanks for the awesome library). Up to now > we > relied on the request/reply pattern only (a majordomo derivati

[zeromq-dev] pub/sub pattern

2017-12-05 Thread Gyorgy Szekely
Hi ZeroMQ community, In our application we use ZeroMQ for communication between backend services and it works quite well (thanks for the awesome library). Up to now we relied on the request/reply pattern only (a majordomo derivative protocol), where a broker distributes tasks among workers. Everyth