ZeroMQ (ZMQ, 0MQ, ØMQ) is a high-performance asynchronous messaging library aimed at use in scalable, distributed and/or concurrent applications.
1
vote
0answers
13 views
ZMQ Clients - Server - Worker Performance
I'am currently developing a system with a server, which gets tasks of some clients and processes them.
As I need high throughput I examined the speed for roundtrips/s in a 1Gbit network.
The ...
0
votes
1answer
25 views
Connect to first free port with TCP using 0MQ
I'm writing a distributed search algorithm in which agents need to listen on a TCP socket for incoming connections. At some point, the agent should bind a free TCP port. Port number is not important ...
0
votes
1answer
13 views
Why do I need to receive twice for every message sent to a zmq.DEALER?
I setup a REP/DEALER connection in ZMQ and found that when REP sends one msg to DEALER, the latter must recv twice to get the message. Why is this?
The code to replicate this is a modified version of ...
2
votes
2answers
70 views
ZeroMQ multithreading: create sockets on-demand or use a sockets object pool?
I'm building a POC leveraging ZeroMQ N-to-N pub/sub model. From our app server, when a http request is serviced, if the thread pulls data from the database, it updates a local memcache instance with ...
0
votes
0answers
10 views
JeroMQ: bindToRandomPort doesn't bind to random port, fails silently
I'm trying to develop a networked application that uses a pure-Java implementation of ZeroMQ called JeroMQ. I'm running into some bizarre behavior. Here's a quick test to show you what I mean:
...
5
votes
0answers
65 views
Calling OCaml-wrapped ZeroMQ code from signal handler
I've written some OCaml bindings for CZMQ based on the guide at http://www.linux-nantes.org/~fmonnier/ocaml/ocaml-wrapping-c.php, which seem to work pretty well. For example here's zstr_send:
...
0
votes
1answer
35 views
How to fetch 0mq socket structure from fd?
We have an application in which we are listening on a socket. When clients connect, we need to know the per client “fd” and the peer address. This info can be fetched using the socket monitors. ...
0
votes
1answer
27 views
How to create a raw socket with ZeroMQ in Java?
I'm trying to port the ZeroMq Hello World Http server to Java from C. In this code snippet, the router socket is set to read raw data, but I can't figure out how to do this in Java...
...
0
votes
1answer
26 views
Publisher finishes before subscriber and messages are lost - why?
Fairly new to zeromq and trying to get a basic pub/sub to work. When I run the following (sub starting before pub) the publisher finishes but the subscriber hangs having not received all the messages ...
-1
votes
0answers
25 views
ZeroMQ hello world server not linking in VC++ 2012
Good morning everyone!
I'm trying to learn how to use ZeroMQ. First of all, I faced problems when trying to compile the Hello, world! example.
I'm using this C++ server code: ...
1
vote
1answer
39 views
processing HTTPS requests and ZeroMQ messages in parallel inside Twisted
I am trying to do two things in parallel:
intercept HTTPS POST request and make Twisted hold the connection open indefinitely (return NOT_DONE_YET)
listen to ZeroMQ queue (and close one of the ...
0
votes
1answer
28 views
Version of zmq jar
I have zmq.jar built by someone else long time ago. How can I find out which version it corresponds to?
Not much in the MANIFEST:
$ cat MANIFEST.MF
Manifest-Version: 1.0
Created-By: 1.6.0_14 (Sun ...
0
votes
0answers
25 views
How to build static zeromq under ndk for android?
I try to build zmq for android follow http://www.zeromq.org/build:android
but it do not work, link error for some reason i do not know.
I google it a lot and I find no way to make it right.
so I ...
-1
votes
1answer
17 views
zeromq sub-pub mode, block and lost
I use zeromq sub-pub mode in my app, but I got a problem:
I started sub app and subscribed the message, and then started pub app later, and the pub app will not publish any message in half hour or ...
0
votes
3answers
50 views
Trying to send simple messages with zeromq in python between two hosts
Script running on machine 1
$ cat foo.py
import zmq
context = zmq.Context()
socket = context.socket(zmq.SUB)
socket.bind("tcp://127.0.0.1:5000")
print "socket bound"
while True:
print ...
1
vote
0answers
38 views
a good way to use tornado with zeromq
I'm trying to achieve a link between tornado and zmq asynchronously.
i've manage to code something that works like that :
sub=context.socket(zmq.SUB)
class market(RequestHandler):
@asynchronous
...
1
vote
0answers
32 views
ZeroMQ Router Losing Messages
The scenario is as follows:
2 ZMQ_ROUTER sockets, A and B;
A binds to an address and is assigned an identity;
B binds to an address, is assigned an identity and also connects to A;
They talk for a ...
1
vote
1answer
70 views
Python hangs up on returning from a function
So say I have two functions in a fairly complicated Flask application. One function calls the other function.
def dispatch_unlock(...):
# ... stuff ...
log('dis start')
# this routine ...
0
votes
0answers
20 views
how to use “inproc” for connecting C# and C++ (how to share context?)
I want to connect c++ and c# side of my application using "inproc" binding.
To do that I need to share context somehow, because both c# and c++
parts should use the same context.
How can I do that? ...
0
votes
0answers
17 views
How to implement network service identification, check if service is as expected (like TCP handshake)
I am implementing service with ZeroMQ (a good abstraction over networking). Ideally it would be cool if client can determine if server is what expected.
Example:
There are 3 services:
Sum service. ...
0
votes
0answers
28 views
fastest way to pass data inside process using zeromq
Writing my first zeromq application so sorry about simple question.
In my financial software I receive quotes from stock exchange. Each update looks like that:
struct OrderUpdate {
uint32_t ...
2
votes
1answer
48 views
ZMQ poll not working
When I run the following code, I get an error on the first call to zmq_poll (i.e. it returns -1). The zmq_errno() returns 128 and the zmr_strerror(128) call returns "Unknown error". I have been using ...
0
votes
0answers
28 views
zero mq asynchronous server side is getting core dump
This is first post in the forum and need help.
I have implemented the ZeroMQ server part much same as documented here
https://github.com/egalli64/thisthread/blob/master/zmq/d2r.cpp.
Below is my code
...
1
vote
1answer
59 views
ZMQ messaging specific endpoints
I am currently using ZMQ as my means of sending information between a C# server and multiple C++ clients. ZMQ has worked perfectly up to this point due to the standard protocol between the different ...
0
votes
1answer
70 views
ZeroMQ on Heroku
Why doesn't it exist on Heroku?
I want to use Akka and a distributed queues system for actors to communicate on different dynos. RabbitMQ doesn't seem to be the best option using Akka, because a lot ...
0
votes
1answer
51 views
does it make sense to use zeromq on localhost? or it's better to use shared memory?
I need to transfer financical data between two process (currently c++ and c#, in future c++ and c++ on Linux). It's live quotes - something like 1 100, 1 100.1, 2 101.2 end so on.). Data has ...
1
vote
1answer
19 views
Resend frames of message without copy
Question:
Can I initialize a new message with part of another message without copying? Modifying the message in place to drop the first few frames would also work.
Scenario:
I'm using the ...
2
votes
2answers
37 views
How to push all data to late subscribers?
I would like to know if zmq already solves following problem (or) the application sitting on top of zmq needs to take care of it.
1) A central publisher which publishes data to all subscribers. This ...
2
votes
1answer
52 views
Best approach for multiple envelopes in ZeroMQ pub/sub pattern?
I'm trying to design a pub/sub architecture with ZeroMQ, and I want to make maximum use of ZMQ's internal filtering for subscribers.
What is the best way to handle multiple message envelopes in ZMQ ...
1
vote
1answer
30 views
libevent kqueue doesn't work on fd returned from zmq_getsockopt()
ORIGINAL POST:
I'm writing a service in C programming using libevent and zmq.
Msg is pushed from python code to C service using PUSH-PULL pattern.
fd received from zmq socket:
void *receiver = ...
2
votes
2answers
100 views
Implement multi-thread applications without locks in ZeroMQ
http://www.zeromq.org/blog:multithreading-magic
The message-based ZeroMQ framework implements concurrent/multi-thread applications without using locks.
Question> how does it actually works for the ...
0
votes
2answers
52 views
Akka-ZMQ subscriber creation error (poll)
I successfully created publisher but failed to create subscriber by using the following:
public static void main(String [] args)
{
ActorSystem system = ActorSystem.create("System");
...
1
vote
2answers
44 views
ZeroMQ pattern query
I want to implement a server client code in C++ using 0MQ.
My requirement is to implement a code where client sends a request to server, server sends multiple data in a iteration to client. Then ...
0
votes
1answer
53 views
ZeroMQ C++ req-rep termination error
Here is ZeroMq C++ code for simple request - reply where both exchange messages alternatively.
But error occures when messages are only sent continuously ....
Reply code :
include zmq.hpp
include ...
0
votes
0answers
50 views
ZeroMQ C++ epgm pub-sub not working
Here is my code of publisher and subscriber using epgm in zeroMQ, where publisher publishes a string "x." continuously and subscriber should receive the messages but it is not happening in this code.
...
1
vote
2answers
46 views
Data obtaining check PUB/SUB pattern
There is a server, that collects some data and then sends it to the client. I need to be sure that the client got the data sent by server. I thought PUB/SUB pattern here would be best choice, but I ...
0
votes
1answer
35 views
Building jzmq on OS-X (Mountain Lion)
I'm getting the following error when trying to build jzmq
https://github.com/nathanmarz/jzmq
Any idea what I'm missing here?
./autogen.sh
autoreconf: Entering directory `.'
autoreconf: ...
1
vote
1answer
72 views
Sending messages from other languages to an IPython kernel
Does anyone have any experience of communicating with IPython kernels from outside of Python?
If I were trying to send messages from a Python app to an IPython kernel, I'd use the zmq.kernelmanager ...
3
votes
1answer
42 views
Pub/ Sub - Subscribing to a non-0MQ publisher
I'm currently trying to make a proxy with 0MQ. I would like to subscribe to a publisher that is not running under 0MQ. I mean I have the address and the port of a distant publisher that is sending XML ...
0
votes
0answers
29 views
Zeromq - Queue manager
I have a glimpse on Zeromq and now I have some doubts on that.Where does the Zmq queue manager stores the messages and in which manner it handles the messages?
1
vote
1answer
77 views
zeromq, C++, is it necessary to set a high water mark for subscribers?
I did a quick test of the ZeroMQ PUB/SUB and now have some working code. However, I am a bit confused about the concept of high water mark as applied in zeromq.
I have set a HWM in my publisher code ...
2
votes
1answer
57 views
Lazy Pirate pattern with real request data
I am learning zmq with PyZMQ binding and i have trouble with Lazy Pirate pattern.
So, here is a code for Lazy Pirate server and Lazy Pirate client.
In example client sends request, but it is simple ...
1
vote
1answer
23 views
zeromq individual subscriber queues
I have a question about zeromq pub/sub. Does the publisher create a separate queue for each individual subscriber or is it one queue for all subscribers (and hence limited by the slowest subscriber)?
0
votes
2answers
56 views
How can I clean up properly when recv is blocking?
Consider the example code below (I typed it up quickly as an example, if there are errors it doesn't matter - I'm interested in the theory).
bool shutDown = false; //global
int main()
{
...
1
vote
1answer
77 views
understanding ZMQ - PAIR Sockets for multi-threading
Refer to http://hintjens.wdfiles.com/local--files/main:files/cc1pe.pdf
page 67.
Question> I don't see why the following code is good for multi-thread. Based on my understanding, the main thread can ...
0
votes
1answer
42 views
compile zmq on sh4 CPU and occurs referenced by DSO error
I found if I add -shared, It will solve the make problem, but, I don't know where to modify the Makefile. I've tried LDFLAGS,CXXFLAGS in Makefile https://gist.github.com/anonymous/5453234 , it can not ...
0
votes
0answers
31 views
Is there a way to safely read a string from Java given a C (char *) using Java? (Monitoring ZeroMQ sockets in Java)
I am using JZMQ wrapper for ZeroMQ 3.2.3 and in a thread I have the need to detect ZMQ_EVENT_ACCEPTED and ZMQ_EVENT_DISCONNECTED events. The ZeroMQ C library has the function int zmq_socket_monitor ...
1
vote
0answers
29 views
where I can find update zmq tutorial?
I have the following page useful http://www.zeromq.org/code:examples-chat
However, it indicates that "This text is deprecated and refers to an old version of ØMQ. It remains here for historical ...
0
votes
1answer
16 views
why is easy_install using python 2.6 for zeromq binding installation?
sudo easy_install pyzmq
Searching for pyzmq
Best match: pyzmq 13.0.2
Processing pyzmq-13.0.2-py2.6-macosx-10.8-intel.egg
pyzmq 13.0.2 is already the active version in easy-install.pth
Using ...
1
vote
1answer
37 views
no module named zmq for python code
When I try to run this script
# -*- coding: utf-8 -*-
#
# Hello World client in Python
# Connects REQ socket to tcp://localhost:5555
# Sends "Hello" to server, expects "World" back
#
import ...

