I have a Google App Engine app using Java and Spring MVC 3.0. A lot of the time if it goes even 2 minutes without a request, then the next request is a loading request which takes about 12 seconds to respond to and uses about 5 seconds of CPU time. Sometimes it does a loading request even when there was no traffic for only one minute.

Google says once there is a steady flow of traffic to your site then you won't have to worry about it, but even if I had a steady flow, there would probably still be times when I went without traffic for 1 minute.

Is this a normal amount of idle time for the JVM instance to be deactivated?

EDIT: After investigating I found that JDO initialization is the part that takes the most amount of time (~6 seconds). And after I turned component-scan off of spring, and manually specified the controllers, spring setup time went down to 1.5 seconds. If I don't use jdo on a loading request, then loading request response time is a more reasonable ~3 seconds instead of ~12 seconds.

What would be nice is we could serialize the DispatcherServlet to the memcache.

link|improve this question

80% accept rate
Related to: stackoverflow.com/questions/2051036/… – Adam Crossland Jan 21 '10 at 18:00
man stack overflow gets indexed by google fast. This page is already number 2 on google search for app engine loading requests. – Kyle Jan 22 '10 at 4:50
feedback

2 Answers

up vote 1 down vote accepted

There has been a fix by the Google team, and now loading requests are only happening every 10 minutes or so, which is much more reasonable.

link|improve this answer
Could you give any reference for that? I was not able to find the source of that information. Thanks! – Nils Schmidt Dec 2 '10 at 0:47
feedback

Current evidence seems to point towards AppEngine recycling your application's resources after rather short idle periods, and that can definitely be a major hardship for applications like yours that have lengthy boot-up times. I am currently unaware of any solution to this problem.

link|improve this answer
And some devs are trying to game the system by having their sites hit by pings fairly often. Which means Google combats that, and so on. I used to go 20 minutes before needing a bounce - now it's a couple minutes. Have never tried to game it. – Richard Watson Jan 23 '10 at 11:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.