I've seen this periodically.

The pattern that seems to be percolating around the list is to always
wrap a task insertion (if important) in an try/except, and resubmit
the job on failure.

Myself, I try to insert once in the except block, and then throw up my
hands forever.  That appears to be work so far.

On Sep 22, 8:34 pm, "Raymond C." <windz...@gmail.com> wrote:
> Anyone else having the same problem? or its just me?  Most of my task
> queue insertions are failing with below error, they were working fine
> for several weeks.
>
> The traces are as below:
>
> File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/
> deferred/deferred.py", line 241, in defer
>    return task.add(queue, transactional=transactional)
>  File "/base/python_runtime/python_lib/versions/1/google/appengine/api/
> labs/taskqueue/taskqueue.py", line 563, in add
>    return Queue(queue_name).add(self, transactional=transactional)
>  File "/base/python_runtime/python_lib/versions/1/google/appengine/api/
> labs/taskqueue/taskqueue.py", line 617, in add
>    self.__AddTasks(tasks, transactional)
>  File "/base/python_runtime/python_lib/versions/1/google/appengine/api/
> labs/taskqueue/taskqueue.py", line 645, in __AddTasks
>    raise self.__TranslateError(e.application_error, e.error_detail)
> TransientError

-- 
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