Well, I don't personally think that every filed ticket means a real issue. It often happens that the issue is in the code or something else, unrelated.
In fact, in your graphs the API calls CPU is as low as it always was. That means the cause is neither Datastore, nor Memcache or any other service your app might be using (e.g. URLfetch). Most likely that means the actual code of your app is consuming the CPU, so the scheduler simply launches more instances because the average latency of your app has increased. Even though the traffic to your app is the same as it was before, it very much might be that your code is not covering all edge cases. I don't know, some missing entity property that happend to be there only in the past 24 hours, or maybe you rely on memcached query results that are not there anymore and you just not re-populating (re-caching) some of it. Stuff like that. On Wednesday, March 14, 2012 6:15:47 PM UTC+1, Mos wrote: > > Hi Alex, > > right, 1 instance is billed, cause this application runs in non payed > mode, but the scheduler spans up to four instances (without real need). > In payed mode I assume the green line would not be on 1 instance all the > time... (I'm glad I didn't activate payment yet) > > Graphs are attached. > > According to Google Analytic and application logging there was similar > usages then the days before. (Around one to two request the minute) > I think we don't need to discuss that something bad is going on the last > 24h to 48h hours for many GAE users? > Please check issue tickets and other postings here..... > > > > > > > > On Wed, Mar 14, 2012 at 5:58 PM, alex <[email protected]> wrote: > >> Funny... maybe I'm not getting something here but, where's the issue? It >> is crystal clear from your graphs that you are being billed for 1 instance >> only, all the times. >> >> Can you show CPU ms used/sec and Errors/sec graphs? >> >> >> On Wednesday, March 14, 2012 5:50:04 PM UTC+1, Mos wrote: >>> >>> And here are two that are related to this thread (application has same >>> traffic, load and configuration for days --> major GAE problem for more >>> then 24 hours): >>> >>> Attached.... >>> >>> >>> >>> >>> >>>> >>>> >>>> On Wed, Mar 14, 2012 at 5:29 PM, Brandon Wirtz <[email protected]>wrote: >>>> >>>>> Nah it is all shiny… And that couple of hours when there are no logs, >>>>> that was just cause everyone was sleeping… >>>>> >>>>> This is just a pretty picture… It’s not related to this thread. J >>>>> >>>>> >>>>> >>>>> -- >>>>> 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 <[email protected]>. >>>>> To unsubscribe from this group, send email to >>>>> google-appengine+unsubscribe@**googlegroups.com<google-appengine%[email protected]> >>>>> . >>>>> For more options, visit this group at http://groups.google.com/** >>>>> group/google-appengine?hl=en<http://groups.google.com/group/google-appengine?hl=en> >>>>> . >>>>> >>>> >>>> >>> >>> -- >> You received this message because you are subscribed to the Google Groups >> "Google App Engine" group. >> To view this discussion on the web visit >> https://groups.google.com/d/msg/google-appengine/-/tk8Xo_fvQ04J. >> >> 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. >> > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/9EjTUlYsfnQJ. 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.
