Re: Working with 0mq

2011-12-05 Thread Thijs Terlouw
I have used the two together: ZooKeeper was used for service discovery (each service registers itself and monitors ZooKeeper). ZeroMQ was used as the actual transport layer for connecting the services together. That way all parts of the system (including ZooKeeper, via DNS) were dynamic. ZooKeeper

Re: Working with 0mq

2011-12-05 Thread Ted Dunning
They serve very, very different functions. 0mq is a message queue that strives for low latency and reasonably reliable delivery. Zookeeper is a coordination service. On Mon, Dec 5, 2011 at 8:26 AM, Mark wrote: > Can someone briefly explain how Zookeeper and 0mq work together? Why > wouldn't on

Working with 0mq

2011-12-05 Thread Mark
Can someone briefly explain how Zookeeper and 0mq work together? Why wouldn't one be used over the other? Thanks