Tagged Questions

ZeroMQ (ZMQ, 0MQ, ØMQ) is a high-performance asynchronous messaging library aimed at use in scalable, distributed and/or concurrent applications.

learn more… | top users | synonyms

171
votes
18answers
68k views

ActiveMQ or RabbitMQ or ZeroMQ or

We'd be interested to hear any experiences with the pros and cons of ActiveMQ vs RabbitMQ vs ZeroMQ. Information about any other interesting message queues is also welcome.
13
votes
1answer
660 views

Am I using reactive-banana right?

Here's an example Haskell FRP program using the reactive-banana library. I'm only just starting to feel my way with Haskell, and especially haven't quite got my head around what FRP means. I'd really ...
12
votes
6answers
2k views

How should a ZeroMQ worker safely “hang up”?

I started using ZeroMQ this week, and when using the Request-Response pattern I am not sure how to have a worker safely "hang up" and close his socket without possibly dropping a message and causing ...
10
votes
4answers
3k views

node.js performance with zeromq vs. Python vs. Java

I've written a simple echo request/reply test for zeromq using node.js, Python, and Java. The code runs a loop of 100K requests. The platform is a 5yo MacBook Pro with 2 cores and 3G of RAM running ...
8
votes
3answers
258 views

Why do operating systems limit file descriptors?

I ask this question after trying my best to research the best way to implement a message queue server. Why do operating systems put limits on the number of open file descriptors a process and the ...
8
votes
2answers
2k views

Is ZeroMQ production ready?

What are your experiences with ZeroMQ as a general purpose messaging middleware? Did you run into any show-stopping bugs or non-obvious "features"? E.g. 2.0 was not flushing messages properly, and ...
7
votes
4answers
561 views

Using ZeroMQ for cross platform development?

We have a large console application in Haskell that I have been charged with making cross platform and adding a gui. The requirements are: Native-as-possible look and feel. Clients for Windows and ...
7
votes
4answers
2k views

What are zeromq use cases?

could you write some examples of zeromq?
7
votes
2answers
3k views

ZeroMQ / ØMQ / 0MQ how to get started?

I am trying to use ZeroMQ / ØMQ / 0MQ (which ever you prefer) on Windows using C# Binding. Is there any beginner materials out there? Do I need to register ZeroMQ DLL on Windows or something in order ...
6
votes
1answer
610 views

Can't get ZeroMQ python bindings to receive messages over IPC

I'm trying to achieve PUB/SUB over IPC. If I changed the code below so that the subscriber binds to "tcp://*:5000" and the publisher connects to "tcp://localhost:5000" it works, but I can't get it to ...
5
votes
2answers
185 views

ZeroMQ pipeline pattern

I'm implementing a messaging system where external programs called agents are able to communicate via ZeroMq producers. So, every time an event of interest occurs, agent sends a message to ZeroMq. ...
5
votes
2answers
915 views

Python ZeroMQ PUSH/PULL — Lost Messages?

I am trying to use python with zeroMQ in PUSH / PULL mode, sending messages of size 4[MB] every few seconds. For some reason, while it looks like all the messages are sent, ONLY SOME of them appear ...
5
votes
3answers
662 views

Why doesn't zeromq work on localhost?

This code works great: import zmq, json, time def main(): context = zmq.Context() subscriber = context.socket(zmq.SUB) subscriber.bind("ipc://test") ...
5
votes
1answer
421 views

ZeroMQ design decisions

In a REQ/REP socket, if the socket send a request to a dead (disconnected) node the message isn't delivered and stays in a message queue occupying memory. How can one clean these undelivered messages ...
5
votes
2answers
1k views

Do you know any projects where ZeroMQ was used? Both success and failure stories are valuable

I'm interested in using ZeroMQ in a project, but I'd like to hear about other's experience with it. I did some searching but found only mongrel2 project. Have you heard about other projects where it ...
4
votes
4answers
93 views

ZeroMQ PUB socket buffers all my out going data when it is connecting

I noticed that a zeromq PUB socket will buffers all outgoing data if it is connecting, for example import zmq import time context = zmq.Context() # create a PUB socket pub = context.socket (zmq.PUB) ...
4
votes
1answer
131 views

ZMQ Pub-Sub Program Failure When Losing Network Connectivity

I have a simple pub-sub setup on a mid-sized network, using ZMQ 2.1. Although some subscribers are using C# bindings, others are using Python bindings, and the issue I'm having is the same for ...
4
votes
2answers
420 views

Problem installing zmq on amazon linux (unable to find uuid)

I'm trying to put together an AMI on EC2, and am currently stalled on building 0mq. initially, I got this error while running ./configure checking for uuid_generate in -luuid... no configure: ...
4
votes
1answer
347 views

Python Multi-Processing Question?

I have a folder with 500 input files (total size of all files is ~ 500[MB]). I'd like to write a python script that does the following: (1) load all of the input files to memory (2) initializes an ...
4
votes
1answer
892 views

Gearman vs ZeroMQ

Has someone some feedback about distributed architectures with these engines? Which is the best, or in which cases which is the best election? Regards!
4
votes
1answer
506 views

ZeroMQ PUSH/PULL and lost message

I'm making use of ZeroMQ from .NET and got stuck trying to fix a weird issue. I've got a socket of type PUSH and one of type PULL over TCP. When the client disconnects, the server is still able to to ...
4
votes
1answer
1k views

Using ZeroMQ with C# with inproc transport

I'm experimenting with ZeroMQ and trying to get something working. My first thought was to set up a REP/REQ using the inproc transport to see if I could send messages between two threads. Most of ...
4
votes
1answer
1k views

DDS vs AMQP vs ZeroMQ

I wanted a feedback on whether my evaluations and concerns are correct. I have been reseaching the three, Data Distribution Service, AMQP and ZeroMQ for sometime now for building a data transport ...
3
votes
2answers
262 views

Difference between Apache Thrift and ZeroMQ

I understand that Apache Thrift and ZeroMQ are softwares belonging to different categories, and it is not easy to do a comparison since it is an apple to orange comparison. But I don't know why they ...
3
votes
1answer
127 views

ZeroMQ socket Recv() throws 'Context was terminated' exception - why and how to recover?

Using a ZMQ.SocketType.REP (reply) messaging socket with ZeroMQ, I am receiving messages and then sending an "OK" message back. For now, I'm trying this locally (sending/receiving messages from the ...
3
votes
2answers
207 views

Implementing Task Farm messaging pattern with zeromq

I am using zeromq to solve a problem which involves several hundred (potentially thousands) clients request tasks to be carried out. Each client would request for a specific task to be carried out, ...
3
votes
3answers
341 views

lost messages on zeromq pub sub

I'm trying to implement the pub sub design pattern using zeromq framework. The idea is to launch a subscriber and afterwards to launch the publisher. The subscriber will listen to 100 messages and the ...
3
votes
2answers
368 views

0mq one-to-many connection

What is the most correct way to establish a two-way communication between processes using 0mq? I need to create several background processes that will wait for commands from the main process, perform ...
3
votes
2answers
325 views

How can I receive multipart messages with ZeroMQ?

I can't get ZeroMQ C++ wrapper to receive multipart messages. The same code using C version works just fine, but it leads to an exception with no explanations at all with C++. The multipart handling ...
3
votes
2answers
994 views

0MQ: How to use ZeroMQ in a threadsafe manner?

I read the ZeroMq guide and I stumbled upon the following: You MUST NOT share ØMQ sockets between threads. ØMQ sockets are not threadsafe. Technically it's possible to do this, but it ...
3
votes
2answers
512 views

How does zeromq work together with SSL?

I am considerung to use zeromq as messaging layer between my applications. At least in some cases I want the communication to be secure and I am thinking about SSL. Is there some standard way how to ...
3
votes
1answer
293 views

how does zeromq determine order of load balancing?

The documentation explains which socket types use load balancing between connected peers, but it doesn't say how it does the load balancing. I'm curious if it's deterministic and if so, what it's ...
3
votes
2answers
4k views

Compile C lib for iPhone

I'm trying to compile ZeroMQ C binding in order to be able to use it on iPhone, here is my configure options: ./configure --host=arm-apple-darwin --enable-static=yes --enable-shared=no ...
3
votes
6answers
3k views

How do I compile jzmq for ZeroMQ on OSX?

Trying to follow the directions from: http://github.com/zeromq/jzmq I installed pkg-config using Homebrew and then I run the following commands: ./autogen.sh ./configure The configure fails with: ...
3
votes
4answers
2k views

Pure java ZeroMQ clients?

I am trying to use ZeroMQ's pub sub messaging, but the client side requires the code to be all Java. I understand that ZeroMQ has a Java binding but that still relies on a c library, therefore I am ...
2
votes
0answers
53 views

ZeroMQ examples for haskell aren't working

Poll-enabled example for Push-Pull is just hanging on launch while original works just fine. Even simpler poller example hangs for a while and then starts to leaking memory like crazy. It's all very ...
2
votes
1answer
97 views

Is zeromq the right solution for peer to peer video chat

I was wondering if my idea of zeromq is right? I was thinking of writing a peer to peer chat application using zeromq but as i read further into it zeromq seems to be more low level than what one ...
2
votes
1answer
133 views

ZeroMQ, Does Scala Binding slow it down considerably

We are using a pull push mechanism similar to the perf tests specified here for ZeroMQ. http://www.zeromq.org/results:perf-howto For the throughput test with a message size of 4.3KB and 100,000 ...
2
votes
1answer
93 views

Runtime error with 0MQ Haskell binding: getIntOpt: interrupted (Interrupted system call)

With the below function is based on the 0MQ Haskell bindings. I get an error at runtime. The error says getIntOpt: interrupted (Interrupted system call) and the program stops. It probably has to do ...
2
votes
0answers
133 views

Is ZeroMQ really reliable and scalable? [closed]

It is said here about The Intelligent Transport Layer Message Queue Evaluation Notes It looks like the python 0mq extension is broken. The sending and receiving functions work only when they ...
2
votes
0answers
89 views

Is it helpful to use ZeroMQ to build a peer-to-peer workload scheduler?

I am coding a workload scheduler. I would like my piece of software to be a peer-to-peer scheduler, ie. a node only knows some neighbours (other nodes) and use them to reach other nodes. Each node ...
2
votes
1answer
141 views

ZeroMQ High Water Mark Doesn't Work

when I read the "Durable Subscribers and High-Water Marks" in zmq guide, it said "The HWM causes ØMQ to drop messages it can't put onto the queue", but no messages lost when I ran the example. Hit ...
2
votes
4answers
847 views

Performance comparison between ZeroMQ, RabbitMQ and Apache Qpid

I need a high performance message bus for my application so I am evaluating performance of ZeroMQ, RabbiMq and Apache Qpid. To measure the performance, I am running a test program that publishes say ...
2
votes
1answer
543 views

ZeroMQ + Protocol Buffers

ZeroMQ FAQ page suggest use of Google's protobuf as a way to serialise message content. Has anyone see a good usage example? I also need to get the answer to "What is the biggest advantage of ...
2
votes
1answer
68 views

Which CORBA implementation to use?

In some project, SysV IPC | Posix queues are used to exchange data between processes; with upcoming Windows port of a software, "an enormous amount of headache will be introduced without getting into ...
2
votes
1answer
220 views

Is there a good tutorial or example that shows the combination of protobuf-net and zeromq?

Is there a good tutorial or example that shows how to use protobuf-net and zeromq together? Maybe a sample client / server application showing this usage?
2
votes
2answers
205 views

zeromq glib main loop integration

I wanted to add a zeromq socket to a glib program. Pity is, a zmq socket is not poll()able, and they give their implementation which overloads the old poll() func. How could I integrate that into the ...
2
votes
2answers
242 views

Does anyone know how to setup ZeroMQ on Windows to work with OpenPGM?

Does anyone know how to setup ZeroMQ on Windows to work with OpenPGM? I guide would be ideal but I can't find anything. Thanks
2
votes
1answer
459 views

Serialize in C# (protobuf-net) , Deserialize in C++ (protobuf) : More than 5 fields in class

I'm having trouble deserializing an object in C++ that I had serialized in C# and then sent over the network with ZMQ. I'm fairly certain the ZMQ part is working correctly because the C++ server ...
2
votes
3answers
315 views

How to use ZeroMQ in an GTK/QT/Clutter application?

In gtk applications all execution is taking place inside the gtk_main function. And other graphical frame works have similar event loops like app.exec for QT and clutter_main for Clutter. However ...

1 2 3 4