Matija, you said: """or that app-engine quota permits this CPU usage only few times let's say per minute and that they will stop my application for several hours if I continue with this usage."""
Bingo, that is exactly what we do. We don't absolutely forbid such high CPU requests but we do highly discourage them. The best way to think about it is that if we took it to the extreme, and let the app spend as much time on each request as they liked, then we would only be able to serve a small number of applications at the same time. It is only by enforcing request deadlines and cpu-consumption limits that we are able to make this service open to as many applications as possible while also guaranteeing isolation between them. Josh, to address your question, what you are really looking for is improved support for offline processing (there are many issues for this listed in the Issue Tracker). With that infrastructure in place we may be able to adjust the limits. Offline processing is orthogonal to billing. Jon On Oct 13, 9:32 am, Josh Heitzman <[EMAIL PROTECTED]> wrote: > I've been wondering the same thing. When they start letting us pay > for this, will our apps still have to stay under some arbitrary > average number of CPU cycles? > > On Oct 13, 3:21 am, Matija <[EMAIL PROTECTED]> wrote: > > > Hi, > > I have some init stage imports to app-engine application and > > combining with some ajax calls I was able to use maximum of 3000 > > mcycles per request. When there is request that consumes more the 1000 > > mcycles I have warning 'This request used a amount of CPU and may soon > > exceed its quota.' in my application log. > > > Should I be worried because of that or not. Is this general warning > > for me to inform me that with this average CPU use i will use all my > > CPU quota eventually soon, or that app-engine quota permits this CPU > > usage only few times let's say per minute and that they will stop my > > application for several hours if I continue with this usage. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
