That limit is for asynchronous URLFetches within one request:

http://stackoverflow.com/questions/3146349/is-there-a-limit-on-the-number-of-asynchronous-urlfetch-calls-i-can-run-simultane

Not globally. I don't think the limit applies to you unless you are trying
to do more than 10 requests per task queue task asynchronously.

--
Ikai Lan
Developer Programs Engineer, Google App Engine
Blogger: http://googleappengine.blogspot.com
Reddit: http://www.reddit.com/r/appengine
Twitter: http://twitter.com/app_engine



On Tue, Dec 7, 2010 at 3:41 PM, Brian <[email protected]> wrote:

> Hi,
>
> I'm writing an app that needs to process URL fetch requests according to a
> schedule. I'm planning on using cron to check periodically which URLs need
> to be fetched and adding them to a task queue (or multiple task queues to
> allow for some prioritisation. I've read that there's a limit of 10 on the
> number of simultaneous URL fetches that can run simultaneously. What happens
> when a task is taken from the queue to be executed and the simultaneous URL
> fetch limit is hit? Does the task fail? Or block, until one of the 10
> fetches completes? Or something else?
>
> Brian
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-appengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to