On Mar 14, 1:17 pm, Gopal Patel <[email protected]> wrote: > you mean, always have one instance more than required ? ( who is going to > pay for that ? ) , and is not minimum idle instance same thing ?
It is different with the normal resident instance. It is an instance to handle requests only at the time of the situation "no available instances and need create a new instance", so that many "Cold Starts" can be avoided. "Who pay for that?" If it is implemented cleverly, not many extra cost for Google. And please consider the current instance prices is more than 5 times higher than the normal level. I said many times, the GAE instance scheduler program has problems. Sometimes, even the normal resident instance is idle, GAE instance scheduler will still not use it. This means the normal resident instance is not always available for your apps, the money you pays is wasted sometimes. > > > > > > > > On Wed, Mar 14, 2012 at 10:36 AM, Tapir <[email protected]> wrote: > > I means "why not to conquer it instead of trying to avoid it?". > > > If you can't conquer it, please lower the instance prices to the > > normal level, I mean about tenth to fifth of the current level so that > > apps can open more resident instances to avoid "Cold Starts". > > > Here is one solution: give each app one hidden resident instance, when > > an app needs a new instance to handle a coming request, GAE use the > > hidden resident instance to handle the coming request, and open the > > new instance at the same time. Your current "open a new instance and > > let the new coming request to be handled after the new instance is > > warmed up" is not a good implementation. > > > On Mar 14, 11:51 am, Tapir <[email protected]> wrote: > > > . > > > -- > > 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. -- 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.
