Another thing to remember is that a put coming from the task queue may
overwrite a put that got done after the datastore came back to life
but before the task queue did the put. See this post for more:
http://stackoverflow.com/questions/3800263/fail-safe-datastore-updates-on-app-engine


On Mar 24, 1:33 pm, Calvin <calvin.r...@gmail.com> wrote:
> You can add new tasks while the datastore is in readonly mode. If you
> attempt to write to the datastore from the task it will fail, and unless you
> catch the exception it throws, it will get retried periodically.
>
> Once the datastore comes out of readonly mode the task will complete, unless
> you've got some other problem in there.
>
> One thing you've got to remember is that you can only put 10k of data into a
> task.

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