[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Cliff Hill
Still unable to do datastore gets. Well, for about 3 hours yesterday, it worked, and then it stopped. And it is still stopped as of this morning. Any chance that I'll be able to use my datastore code sometime in the near future? My app really kinda relies on the datastore to, well, work. On Thu,

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread sandlex
I played with my application today and there was no any problems with datastore. On Fri, Sep 4, 2009 at 6:21 PM, Cliff Hillch...@darkhelm.org wrote: Still unable to do datastore gets. Well, for about 3 hours yesterday, it worked, and then it stopped. And it is still stopped as of this morning.

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
Well, my primary servlet that loads data from the datastore still breaks, and spits out a 500 Server Error when I run it manually: http://showsort.appspot.com/showsort/list If it works, it shouldn't show anything at all, because it is a GWT- RPC driven servlet. http://showsort.appspot.com

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
Application ID is showsort. I can't provide stacktraces for the error, because I'm getting no stacktraces. It isn't even showing up in the logs as a problem. I'm seeing a 500 error, where there used to not be a 500 error. I've not modified the code for my list servlet in several days, but this

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Arod
My app id is mindhackme. My app has not run for approx a week now and it died without me even updating it. I searched online about possible causes and one post I read determined that the persistenceManager bean that the Grails GAE plugin used was not a singleton and that was creating problems.

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
I just re-uploaded my app, with logging enabled for my servlet again, so I can see the progress it has when/if it runs. However I'm seeing that someone has been testing other things as well... I'm also seeing a 500 Server Error on the main app now. On Sep 4, 8:42 am, Xlorep DarkHelm

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Toby Reyelts
I can't see that any RPCs are ever made from your client application to the server. How are you testing http://showsort.appspot.com/showsort/list ? You can't follow that directly from a browser (i.e. put it in your address bar), because GWT RPC does not support HTTP GET requests - it will give you

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Toby Reyelts
It looks like your application is being terminated due to exceeding request deadlines. If you look in your application logs, you can see warnings such as: Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
Ok, I added in logging directly to the servlet facade I have which wraps my Jython servlet to make it work on Google Apps Engine, and I'm not even getting that to show up in the logs. Here's what my last request produced (when I show requests only): # 1. 09-04 11:08AM 17.783

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
Oh, I also have seen these occasionally for the past 2 days, suddenly: # 1. 09-04 10:37AM 58.844 /showsort/list 500 10129ms 0cpu_ms 0kb Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.6 Safari/532.0,gzip(gfe) See details

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Toby Reyelts
Unfortunately, when you exceed the request deadline, you can lose your logs for that request. I would suggest paring your RPC down to the very bare minimum, so that you're not exceeding the deadline, then adding in logic and logging timings as you go. You should then be able to narrow things down

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
I set up a doGet method on my list servlet, which should just display the list of algorithm names that is retrieved from the datastore. There are 13 items in the list, not much. http://showsort.appspot.com/showsort/list This way, you don't need to use the rest of the app to see this. I'm

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
Request deadline? I've not been exceeding any request deadline. I'm getting this a lot now: # 1. 09-04 12:01PM 00.892 /showsort/list-- 500 10455ms 0cpu_ms 0kb Mozilla/5.0 (en-us) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13,gzip(gfe) See details

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Xlorep DarkHelm
When uploading a new version, with a few more levels of debugging enabled: Compiling module org.darkhelm.showsort.ShowSort Compiling 6 permutations Permutation compile succeeded Linking into F:\Documents\Eclipse\workspace\ShowSort\war Link succeeded Compilation succeeded --

[appengine-java] Re: GAE down? Response Error 500

2009-09-04 Thread Toby Reyelts
Your app: /showsort/list 500 41106ms /showsort/list 500 29590ms /showsort/list 500 40991ms /showsort/list 500 40340ms /showsort/list 500 30155ms /showsort/list 500 35481ms /showsort/list 500 40109ms /showsort/list 500 42148ms /showsort/list

[appengine-java] Re: GAE down? Response Error 500

2009-09-03 Thread Hani Naguib
I am also getting many error 500 pages. This is happening since the issue I mentioned here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/5368cc59ffc3b26b/50cc3ee1cf45c8d8#50cc3ee1cf45c8d8 --~--~-~--~~~---~--~~ You received this message

[appengine-java] Re: GAE down? Response Error 500

2009-09-03 Thread Traveler1980
Datastore GET error rate is still 100%. Any ETA on when this will be resolved? Regards, JS On Sep 3, 3:41 am, Hani Naguib haninag...@gmail.com wrote: I am also getting many error 500 pages. This is happening since the issue I mentioned

[appengine-java] Re: GAE down? Response Error 500

2009-09-02 Thread Xlorep DarkHelm
I should note: http://showsort.appspot.com There should be 2 things that happen, a line drawn down the middle of a big square, and a set of radio buttons are loaded. Only the line is drawn. On Sep 2, 4:47 pm, Xlorep DarkHelm ch...@darkhelm.org wrote: yeah, noticing a lot of weirdness as of a