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 tomMoral
Recipients bquinlan, dbarcay, pitrou, tomMoral
Date 2018-06-24.18:09:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529863756.14.0.56676864532.issue33945@psf.upfronthosting.co.za>
In-reply-to
Content
This behavior results from the fact that in 3.6, the result_queue is used to pass messages to the queue_manager_thread. This behavior has been changed in 3.7 as we rely on a _ThreadWakeup object.

In 3.6, when the result_queue is filled with many large objects, the call to result_queue.put(None) will hang while the previous objects are being handled by the queue_manager_thread, causing a latency in the submit.
History
Date User Action Args
2018-06-24 18:09:16tomMoralsetrecipients: + tomMoral, bquinlan, pitrou, dbarcay
2018-06-24 18:09:16tomMoralsetmessageid: <1529863756.14.0.56676864532.issue33945@psf.upfronthosting.co.za>
2018-06-24 18:09:16tomMorallinkissue33945 messages
2018-06-24 18:09:16tomMoralcreate