I want to write to a single file from multiple processes. To be precise, I would rather not use the Multiple processing Queue solution for multiprocessing as there are several submodules written by other developers. However, each write to the file for such submodules is associated with a write to a zmq
queue. Is there a way I can redirect the zmq
messages to a file? Specifically I am looking for something along the lines of http://www.huyng.com/posts/python-logging-from-multiple-processes/ without using the logging
module.
Python: write to single file from multiple processes (ZMQ)
1.3k Views Asked by goofd At
1
It's fairly straightforward. In one process, bind a PULL socket and open a file. Every time the PULL socket receives a message, it writes directly to the file.
In the remote processes, create a Proxy object, whose write method just sends a message over zmq:
And, just for fun, if you call
Proxy.write(EOF)
, the sink process will close the file and exit.If you want to write multiple files, you can do this fairly easily either by starting multiple sinks and having one URL per file, or making the sink slightly more sophisticated and using multipart messages to indicate what file is to be written.