More and more user facing requests are going into server instance startup
and getting served.

Please tell us what is good settings to avoid this.

-Aswath


On Mon, Jan 27, 2014 at 11:15 AM, Aswath Satrasala <
aswath.satras...@gmail.com> wrote:

> There is no traffic.  There is one instance running.  I issued a new
> request.  A new instance is started and served.
>
> Appengine team, please help us to avoid this or provide your guidelines,
> so that a new instance is not started for a user facing request
>
> Thanks
> -Aswath
>
>
> On Fri, Jan 10, 2014 at 10:49 PM, Vinny P <vinny...@gmail.com> wrote:
>
>> On Friday, January 10, 2014 7:58:54 AM UTC-6, Ian Marshall wrote:
>>
>>> You could increase your pending latency settings to the maximum allowed,
>>> in order to try to have your app wait as long as possible for an existing
>>> app instance to serve a web request. I use:
>>>
>>>   <automatic-scaling>
>>>     <min-idle-instances>1</min-idle-instances>
>>>     <max-idle-instances>automatic</max-idle-instances>
>>>     <min-pending-latency>15.0s</min-pending-latency>
>>>     <max-pending-latency>automatic</max-pending-latency>
>>>     [...]
>>>   </automatic-scaling>
>>>
>>> to implement this, but I still get web requests being directed to a new
>>> app instance which has just been launched and therefore is not ready to
>>> serve immediately.
>>>
>>>>
>>>>
>>
>> +1.
>>
>> The suggestions above are all good ideas, but regardless of the settings
>> you choose there are always going to be some requests that initiate
>> instance startup. How many requests (as a percentage of all requests) are
>> causing instance startup in your application?
>>
>> In my experience, whenever App Engine gets more aggressive in starting up
>> instances means that there's a new version of App Engine coming out. That
>> or someone at Google is tinkering with the scheduler :-).
>>
>> -----------------
>> -Vinny P
>> Technology & Media Advisor
>> Chicago, IL
>>
>> App Engine Code Samples: http://www.learntogoogleit.com
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to