For a website with 1000 requests per days (300 pages), I have tried my best 
to limit the number of simultaneous running instances.
Here is the settings:

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0";>
  <application>youyards</application>
  <!--Other settings here...-->
  <automatic-scaling>
    <min-idle-instances>1</min-idle-instances>
    <max-idle-instances>1</max-idle-instances>
    <min-pending-latency>2.7s</min-pending-latency>
  </automatic-scaling>
</appengine-web-app>
 
But you scheduler will always spawn useless dynamic instances so that the 
"Frontend Instance Hours" will always exceeds 28 hours each day. 

Hi, gea team, I beg beg beg you, pls help tweak the settings so that the 
"Frontend Instance Hours" for my project each days will be less than 28 
hours. Thank thank thanks!

On Friday, January 24, 2014 9:43:44 AM UTC+8, Tapir wrote:

> All the dynamic instances you spawned all just handle only one /_ah/warmup 
> request. 
> After this request, they do nothing but still running there for many 
> minutes even hours!
> You are wasting/stealing my money!
>
>

-- 
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 [email protected].
To post to this group, send email to [email protected].
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