mix- concurrency. ( 30 ), AppEngine, , (, 7-8).
In SDK 1.4.3, there is a parameter in your queue.xml and appengine-web.config that you can use to tell AppEngine that each instance can handle several tasks at once:
<threadsafe>true</threadsafe> (in appengine-web.xml)
<max-concurrent-requests>10</max-concurrent-requests> (in queue.xml)
This solved all my problems with completing tasks too slowly (despite the fact that all other parameters of the queue were maximized)
Learn more (http://blog.crispyfriedsoftware.com)
source
share