This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Nam.Nguyen
Recipients Nam.Nguyen, bquinlan, r.david.murray
Date 2012-06-11.03:56:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339386996.52.0.563942456588.issue14119@psf.upfronthosting.co.za>
In-reply-to
Content
Currently, ProcessionPoolExecutor has this line in its constructor:

self._call_queue = multiprocessing.Queue(self._max_workers +
                                                 EXTRA_QUEUED_CALLS)

where EXTRA_QUEUED_CALLS is 1.

And yes, it would be best to export a method so that the app developer can set the queue size for themselves. In my case, I would want to limit the queue so that I dont run out of memory. Others might not want the queue to block, and hence would prefer an unlimited queue.
History
Date User Action Args
2012-06-11 03:56:36Nam.Nguyensetrecipients: + Nam.Nguyen, bquinlan, r.david.murray
2012-06-11 03:56:36Nam.Nguyensetmessageid: <1339386996.52.0.563942456588.issue14119@psf.upfronthosting.co.za>
2012-06-11 03:56:35Nam.Nguyenlinkissue14119 messages
2012-06-11 03:56:35Nam.Nguyencreate