Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #42519 > unrolled thread

Re: Get multiprocessing.Queue to do priorities

Started bymadeleine.udell@gmail.com
First post2013-04-01 15:35 -0700
Last post2013-04-01 15:35 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Get multiprocessing.Queue to do priorities madeleine.udell@gmail.com - 2013-04-01 15:35 -0700

#42519 — Re: Get multiprocessing.Queue to do priorities

Frommadeleine.udell@gmail.com
Date2013-04-01 15:35 -0700
SubjectRe: Get multiprocessing.Queue to do priorities
Message-ID<mailman.24.1364856317.17481.python-list@python.org>
Was this issue ever resolved? What is the current best practice for those wishing to use a priority queue with multiprocessing?

On Sunday, May 10, 2009 6:35:03 AM UTC-7, Jesse Noller wrote:
> On Sat, May 9, 2009 at 6:11 PM, uuid <M8R-gqmgb4@mailinator.com> wrote:
> > The Queue module, apparently, is thread safe, but *not* process safe. If you
> > try to use an ordinary Queue, it appears inaccessible to the worker process.
> > (Which, after all, is quite logical, since methods for moving items between
> > the threads of the same process are quite different from inter-process
> > communication.) It appears that creating a manager that holds a shared queue
> > might be an option
> > (http://stackoverflow.com/questions/342556/python-2-6-multiprocessing-queue-compatible-with-threads).
> 
> Using a manager, or submitting a patch which adds priority queue to
> the multiprocessing.queue module is the correct solution for this.
> 
> You can file an enhancement in the tracker, and assign/add me to it,
> but without a patch it may take me a bit (wicked busy right now).
> 
> jesse

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web