PyZMQ is the Python bindings for 0MQ (also spelled ZeroMQ, ØMQ or ZMQ), written almost entirely in Cython
0
votes
1answer
10 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 ...
1
vote
2answers
45 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
0answers
46 views
Reconnecting to ZMQ feed after disconnect
I have this simple python script which connects to a ZMQ feed and spits out some data:
#!/usr/bin/env python2
import zlib
import zmq
import simplejson
def main():
context = zmq.Context()
...
1
vote
2answers
73 views
pyzmq create a process with its own socket
I have some code thats monitoring some other changing files, what i would like to do is to start that code that uses zeromq with different socket, the way im doing it now seems to cause assertions to ...
0
votes
1answer
32 views
Multiple ipc publishers and one subscriber using python-zmq
I'm wondering if is possible set multiple ipc publishers for one subscriber using zmq ipc...
Abstractly I have only one publisher like this, but I need run multiple instances of it getting several ...
1
vote
3answers
80 views
ZeroMQ inter process communication from single thread loses messages
I am currently exploring possibilities to test my zeromq applications. I was under the impression that I could just have a publisher/subscriber in the same thread, let the publisher publish and the ...
0
votes
1answer
77 views
ipython 0.13 zmq errors
I encounter weird behavior of an ipython cluster. The calculations finish, but many results never reach the client (and the engines just idle after finishing their first calculation).
I suspect ...
0
votes
0answers
42 views
ZMQ: Queue of tasks without strict round-robin
I'm trying to figure out how to do the following with ZMQ:
Multiple clients send a request to a server (PUSH)
The server has a queue (pool) of those jobs (PULL/I don't know)
Multiple workers get a ...
0
votes
2answers
169 views
py2exe: error: libzmq.pyd: No such file or directory
During py2exe build I get the following error:
creating python loader for extension 'win32clipboard' (C:\Python27\lib\site-packages\win32\win32clipboard.pyd -> win32clipboard.pyd)
creating python ...
0
votes
1answer
263 views
ZeroMQ, how to connect to external tcp socket?
Can you please tell me how you can use to send messages ZeroMQ between two programs located on different servers using some common socket?
With all local sockets program works, but I do not understand ...
-2
votes
1answer
70 views
How to set zeromq send message block?
How to configuration parameters that zeromq can Send a block message,
When a process sends a message to another process,
if another process does not receive the message, the process which send ...
0
votes
1answer
111 views
Import error in pyzmq after updating libzmq
I have an error when I attempt to update my ZeroMQ to the new version 3.2. This is the ouput that I have:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ...
2
votes
1answer
326 views
Why is gevent.sleep(0.1) necessary in this example to prevent the app from blocking?
I'm pulling my hair out over this one. I'm trying to get the simplest of examples working with zeromq and gevent. I changed this script to use PUB/SUB sockets and when I run it the 'server' socket ...
0
votes
1answer
214 views
Zeromq memory leak (pyzmq)
Hi I'm trying to send large packets with ZeroMQ using the ventilator/worker/sink pattern.
I try adding workers. Each time, the sink process memory usage increases a little. Then it reaches a tipping ...
2
votes
1answer
101 views
Same ZMQ_IDENTITY for multiple Subcribers
I am building a zeromq PUB-SUB pattern with lots of subscribers to one publisher.
I want to build durable Subscribers, so I found out about the ZMQ_IDENTITy socket-option.
What should I take into ...
2
votes
1answer
82 views
Get a particular message from ZMQ Sub Queue
I have a python messaging application that uses ZMQ. Each object has a PUB and a SUB queue, and they connect to each other. In some particular cases I want to wait for a particular message in the SUB ...
2
votes
1answer
227 views
Does PyZMQ handle creating threads for each new client connection?
I'm using PyZMQ to create a request/reply server, and I'm trying to figure out if the act of creating a thread for each new client connection is handled by PyZMQ automatically. Ultimately, I'm trying ...
0
votes
1answer
123 views
Error installing ZeroMQ
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/zmq/__init__.py", line 51, in <module>
from zmq import ...
0
votes
1answer
261 views
How to set a pyzmq socket queued timeout
I had connected zeromq, the "msg_in" already queued. If there is no new message in the period of time the queue come on the set for timeout. how to set the timeout. The following is the core code
...
0
votes
1answer
238 views
Multithreading and ZMQ DEALER/REP hello world doesn't work
First of all my code (largely inspired from ZMQ doc http://zguide.zeromq.org/py:mtserver):
import zmq
import time
import sys
import threading
#SOCKET_NAME = "tcp://127.0.0.1:8000"
SOCKET_NAME = ...
0
votes
1answer
335 views
return value from zmq socket
I am using Socket.IO to have a client webpage fetch data dynamically from my Node.JS server. On the server-side, I am forwarding the request to a Python backend using the zeromq socket library ...
0
votes
1answer
95 views
ZeroMQ rrclient-broker not working
I am trying to run the Python and Node.JS examples from https://github.com/imatix/zguide for the client-broker-worker architecture (rrclient, rrworker, rrbroker).
I can confirm that the Python ...
0
votes
2answers
192 views
ZMQ REP, knowing who send the request
I m currently using zmq with python. Server is using REP socket.
Do I have a way, when recv a message, to know who send it ? If a receive 2 messages, I just need to know if they come from the same ...
2
votes
1answer
619 views
Combining tornado and zmq ioloops: Connection reset by peer exception
I faced with one annoying (while not critical) problem when I tried to combine Tornado and pyzmq ioloops as described in the pyzmq official documentation.
I have a process running tornado (T) server ...
0
votes
1answer
242 views
closing hanging zmq socket from another thread
Is there some way to close a specific hanging recv zmq socket from another thread in Python without clobbering other sockets that may be in use? The following code doesn't seem to exit; replacing the ...
1
vote
1answer
246 views
CX_Freeze import error on Windows and ZMQ
I've a python program that uses ZMQ. I want to Freeze it so everyone can use it as executable. This is my setup.py
import sys
from cx_Freeze import setup, Executable
includes = ["sip", "re", "zmq", ...
2
votes
1answer
268 views
zeromq and bind_to_random_port - how to get port chosen
In python, I am using the following:
context = zmq.Context()
socket = context.socket(zmq.PUSH)
socket.bind_to_random_port('tcp://*', min_port=6001, max_port=6004, max_tries=100)
...
0
votes
0answers
194 views
Python, ZeroMQ and load balancing to workers with a domain name
I am using a PUSH PULL model to send data to many workers. The web servers are being load balanced by using route53 with each ip address added to the same domain. I am not committed to PUSH PULL, ...
0
votes
1answer
333 views
pyzmq error when loading the module
I am trying to install pyzmq to get ipython wotking in qtconsole mode.
I have installed zeromq in the default location (/usr/local). Both the dynamic lib and the header are at the correct position.
...
3
votes
1answer
198 views
ZMQ IOLoop instance write/read workflow
I am having a weird system behavior when using PyZMQ's IOLoop instance:
def main():
context = zmq.Context()
s = context.socket(zmq.REP)
s.bind('tcp://*:12345')
stream = ...
1
vote
0answers
261 views
PYZMQ - “Resource temporarily unavailable” error when using ioloop and multiprocessing
I'm using python ZMQ to make two process communicate over ipc.
The idea is to create N process with multiprocessing module. Each process create a zmq context and a PULL socket (IPC type) with a ...
1
vote
1answer
717 views
Pyzmq Error in IPython Notebook
I'm trying to run IPython notebook in Vista. I believe I installed all the necessary dependencies (listed here) with easy_install. IPython runs fine. But when I try and run the IPython notebook ...
1
vote
1answer
189 views
Pulling requests from multiple clients with ZMQ
I have a couple of workers waiting to do some jobs. I see that in the PULL/PUSH pattern I need to give the workers the ip address (using the tcp protocol) of the client, so it can listen to requests ...
3
votes
2answers
672 views
Multiprocessing vs gevent
Currently I am using zeromq with pub-sub pattern, I have single worker to publish and many(8) subscriber (all will subscribe) to same pattern.
Now I tried multiprocessing to spawn subscribers it ...
6
votes
3answers
2k views
Connecting to a remote IPython instance
I would like to run an IPython instance on one machine and connect to it (over LAN) from a different process (to run some python commands). I understand that it is possible with zmq : ...
0
votes
2answers
223 views
python import error when importing zmq
I have a zmq directory in cwd . when i import zmq from a python file running under apache it gives me import error. but when i import zmq using console from current directory it imports.
How to make ...
0
votes
1answer
676 views
Python cannot import zmq even after installing pyzmq
I installed zmq and pyzmq on ubuntu 10.10 and everything went fine. Now when I import zmq I get an error stating "ImportError: cannot import name initthreads"
Can anyone tell me why is this ...
0
votes
3answers
1k views
zeromq installtion on mac os snow leopard
I have installed zeromq 2.1.11 on mac os x using the steps given on
http://www.zeromq.org/area:download
Then i installed pyzmq (python bindings )
But i get the following error :
import zmq
...
2
votes
1answer
153 views
Reading the stdout from slave nodes with ipcluster
I've set up a cluster using
ipcluster start --n=8
then accessed it using
from IPython.parallel import Client
c=Client()
dview=c[:]
e=[i for i in c]
I'm running processes on the slave nodes ...
2
votes
1answer
427 views
ZMQ Poller not working within Class Instance
Hi I am having some issues wrapping some ZMQ pull clients in Python classes. These classes are instanced and called in a Subprocess via the multiprocessing module. When the clients are functions all ...
2
votes
1answer
244 views
Identifying the origin of ZMQ messages?
If I receive a message via the recv() method on a ZeroMQ (0MQ) socket...
data = s.recv()
...is there any way for me to get at the value of getpeername() for the underlying socket? My goal is to ...
0
votes
2answers
282 views
send a number by zeromq pyzmq
I want to send lots of numbers via zeromq but converting them to str is inefficient. What is the best way to send numbers via zmq?
2
votes
1answer
801 views
Limiting queue length with PyZMQ
I want to limit the amount of memory consumed by my ZeroMQ message queues in a Python application. I know that setting the high-water mark will limit the amount that will be queued on the sender side, ...
7
votes
5answers
2k 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)
...