I’m having much trouble trying to understand just how the multiprocessing queue works on python and how to implement it. Lets say I have two python modules that access data from a shared file, let’s call these two modules a writer and a reader. My plan is to have both the reader and writer put requests into two separate multiprocessing queues, and then have a third process pop these requests in a loop and execute as such.
My main problem is that I really don’t know how to implement multiprocessing.queue correctly, you cannot really instantiate the object for each process since they will be separate queues, how do you make sure that all processes relate to a shared queue (or in this case, queues)
Short Summary
As of CY2023, the technique described in this answer is quite out of date. These days, use
concurrent.futures.ProcessPoolExecutor()instead ofmultiprocessing, below…This answer describes the benefits and shortcomings of using
concurrent.futures.ProcessPoolExecutor(). FYI, multiple python processes are sometimes used instead of threading to get the most benefit from concurrency. That said, python threading works pretty well as long as there is sufficient CPU activity to avoid the GIL (activity such as sending / receiving network traffic).Original Answer
This is a simple example of a reader and writer sharing a single queue… The writer sends a bunch of integers to the reader; when the writer runs out of numbers, it sends ‘DONE’, which lets the reader know to break out of the read loop.
You can spawn as many reader processes as you like…