On Tue, Aug 13, 2013 at 1:19 AM, Brandon <[email protected]> wrote:
> There are no any error was found in GAE logs, and my own logs neither. > > Are you sure there aren't any logs? If you're deploying multiple version or backends, make sure to look at those logs as well. Go to the Logs page, on the very top there's a dropdown box where you can select different versions of your application. Check each version that runs this service. On Tue, Aug 13, 2013 at 1:19 AM, Brandon <[email protected]> wrote: > There is a MailQueue table in my system and a column is named STATUS to > mark up whether this queue is sent or not. > By "queue", do you mean the Task Queue service or are you building your own queuing system? Instead of having to keep track of whether the email was sent successfully, you should convert your code to use the Task Queue service which can track the successful execution of your code - and if necessary retry it in case of failure. See https://developers.google.com/appengine/docs/java/taskqueue/ On Tue, Aug 13, 2013 at 1:19 AM, Brandon <[email protected]> wrote: > The weird thing is that the insert action is totally works fine but the > update is not. > Although it will not sent repeatedly but the column still have chance to > be unable to update. > The MailQueue will be generated everyday, and the number is about 135. > How many times has this happened? If it's a very rare occurrence, there might have been a problem with your instance. If it happens more frequently, you should install AppStats https://developers.google.com/appengine/docs/java/tools/appstats to see what's occurring in the background. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
