[zeromq-dev] zdiscgo - new project

2017-03-03 Thread Brian Knox
I've been working on a new ZeroMQ project - "zdiscgo" - it is a CZMQ service discovery zactor with support for Go plugins. Link here: https://github.com/taotetek/zdiscgo After I fix up the travis integration this weekend I was thinking about moving it to the ZeroMQ org w/ a C4 contribution polic

[zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Wes Young
i’m googling around a bit and trying to figure out where to apply some package-building / hosting effort for zmq packages (and trying to keep them up to date with the latest releases, maybe even the bleeding edge stuff too). https://build.opensuse.org/project/requests/network:messaging:zeromq i

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Kevin Sapper
Hi Wes, funny that you discovered it this way xD This official project on OBS has been granted to us yesterday. Luca and I have already setup a private OBS repository (https://build.opensuse.org/project/show/home:zeromq) which builds Github stable and draft packages of libzmq, czmq, zyre, ...

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Luca Boccassi
On Fri, 2017-03-03 at 09:28 -0500, Wes Young wrote: > i’m googling around a bit and trying to figure out where to apply > some package-building / hosting effort for zmq packages (and trying > to keep them up to date with the latest releases, maybe even the > bleeding edge stuff too). > > https://b

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Luca Boccassi
On Fri, 2017-03-03 at 15:41 +0100, Kevin Sapper wrote: > Hi Wes, > > funny that you discovered it this way xD > > This official project on OBS has been granted to us yesterday. > > Luca and I have already setup a private OBS repository  > (https://build.opensuse.org/project/show/home:zeromq) whi

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Wes Young
rock on. as we're building pyzyre (which includes some embedded-ness across the platforms and all three of the major libs), started running into scenarios where having those up-to-date just made sense. figured if i’m having this prob; others are/or-shortly-will. i’ll keep an eye on the progres

Re: [zeromq-dev] Big thank you for the Hackaton and the rest

2017-03-03 Thread Harald Achitz
Do you know, is this video already online? send from my fairphone On Feb 6, 2017 10:57 AM, "Benjamin Henrion" wrote: > Hi, > > Just wanted to thank you all for the Hackaton and your interventions > at the PH's inmemoriam talk, it was a great week-end. Videos will be > online soon. > > About Gla

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Luca Boccassi
I've finished setting up the projects: https://build.opensuse.org/project/show/network:messaging:zeromq:git-st able https://build.opensuse.org/project/show/network:messaging:zeromq:git-dr aft PRs are open to switch the CI to use them. I've turned the projects under home:zeromq in link projects f

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Wes Young
> On Mar 3, 2017, at 1:55 PM, Luca Boccassi wrote: > > If you package up pyzyre and add an OBS service (zproject builds them > automatically) then just send an OBS request and we'll build it there > too. ack. > Also if it's mature enough please consider moving it to the ZeroMQ > Github org! v

Re: [zeromq-dev] zmq4/czmq/zyre package building and hosting

2017-03-03 Thread Benjamin Henrion
On Mar 3, 2017 15:47, "Luca Boccassi" wrote: On Fri, 2017-03-03 at 09:28 -0500, Wes Young wrote: > i’m googling around a bit and trying to figure out where to apply > some package-building / hosting effort for zmq packages (and trying > to keep them up to date with the latest releases, maybe even

[zeromq-dev] publish/subscribe and the "fast producer" problem

2017-03-03 Thread Francesco
Hi all, I'm new to ZeroMQ but so far all my experiments with it have been quite positive, so thanks for your great work! However, one thing that I cannot really sort out is the following: I have written a small sample program where I create a ZMQ_PUB socket and I continuously zmq_msg_send() messa

Re: [zeromq-dev] publish/subscribe and the "fast producer" problem

2017-03-03 Thread Justin Karneges
And what if there are no subscribers? Publishing should block? It sounds like your goal is some kind of sensible flow control (I'm not sure what else an "at least 1 subscriber can read" use-case really is). My advice is to publish at a fixed rate, for example by sleeping between publishes. I d

Re: [zeromq-dev] publish/subscribe and the "fast producer" problem

2017-03-03 Thread Marcin Romaszewicz
Yeah, you need a way to throttle back the publisher. Have the many nodes tell the publisher to slow down if they detect too high of a drop rate. Your publisher can then decide whether to throttle for the slowest client, or for the fastest client. Also, pub/sub may not be the right way to do this fo