Not relevant unfortunately.

There is not try / catch here - when this happens, your code doesn't
even start executing - GAE just fails it outright, and worse yet, the
back-off algorithm kicks in so after a few generations the whole thing
degenerates into uselessness (I've seen tasks that fail with this
error 23 times in a row)

Jan

On Aug 17, 6:58 am, Alon Carmel <a...@aloncarmel.me> wrote:
> When you fetch data from another server you use the urlfetch service. url
> fetch service holds another limit for requests. when you relay on external
> servers they hold another load which you cannot expect on your end. so if an
> external service has some latency suddenly and plus fall under a database
> high load your tasks will fail enventually.
>
> try
>
> catch
>
> :)
>
> -
> Cheers,
>
> def AlonCarmel(request)
>      import simplejson as json
>      contact = {}
>      contant['email'] = '....@aloncarmel.me'
>      contact['twitter'] = '@aloncarmel'
>      contact['web'] = 'http://aloncarmel.me'
>      contact['phone'] = '+972-54-4860380'
>      return HttpResponse(json.dumps(contact))
>
> * If you received an unsolicited email from by mistake that wasn't of your
> matter please delete immediately. All E-mail sent from Alon Carmel is
> copyrighted to Alon Carmel 2008. Any details revealed in e-mails sent by
> Alon Carmel are owned by the Author only. Any attempt to duplicate or
> imitate any of the Content is prohibited under copyright law 2008.
>
> On Sat, Aug 14, 2010 at 8:28 PM, Dmitry <dmitry.lukas...@gmail.com> wrote:
> > Hi app team!
>
> > "Request was aborted after waiting too long to attempt to service your
> > request. This may happen sporadically when the App Engine serving
> > cluster is under unexpectedly high or uneven load. If you see this
> > message frequently, please contact the App Engine team."
>
> > What may cause this error? I'm getting this quite often (may be every
> > 1 minute) when using task queue. Queue rate isn't so big (5-7
> > simultaneous requests, ~10 sec in average). Task just fetchs data from
> > another server and processes it.
>
> > thx
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com<google-appengine%2bunsubscr...@googlegroups.com>
> > .
> > 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 google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to