Message220712
> Any ideas how to debug this further?
Wherever the cause of the problem might live, and to either work around it or gain additional information, here is one idea to consider.
Do you need to submit your Futures just two at a time, and tightly loop every 15s? Why not submit a block of a larger number and wait for the block with as_completed(), logging for each completion. Then submit another block when they are all done. To control how many run at one time, create the Executor with max_workers=2 for example. (I had an app that ran > 1,000 futures in this way, which worked fine).
In general I suggest to only timeout when there is really a problem, not as an expected event. |
|
Date |
User |
Action |
Args |
2014-06-16 12:00:52 | glangford | set | recipients:
+ glangford, tim.peters, bquinlan, mark.dickinson, pitrou, python-dev, sbt, Sebastian.Kreft.Deezer |
2014-06-16 12:00:52 | glangford | set | messageid: <1402920052.62.0.050743070385.issue20319@psf.upfronthosting.co.za> |
2014-06-16 12:00:52 | glangford | link | issue20319 messages |
2014-06-16 12:00:52 | glangford | create | |
|