On Saturday, January 25, 2014 2:06:31 AM UTC+8, Rafael Sanches wrote: > > that seems correct, > > You have one idle instance because of this: <max-idle-instances>1</max- > idle-instances> > > You have one resident instance because of this: > <min-idle-instances>1</min-idle-instances> >
> You have one other instance because that's the one that is actually > serving. > > > What is the difference between idle instance and resident instance in your view? They are different concepts? or the same? You think there are only one dynamic instance running? (In my view, idle instance and resident instance are the same concept. There is only one resident/idle instance there. And there are 2 dynamic instances running) Do you think a dynamic instances opened for hours to handler just 2 requests (one is /_ah/warnup) is normal? > > > On Fri, Jan 24, 2014 at 8:20 AM, Tapir <[email protected] <javascript:>>wrote: > >> Evidence: http://imgur.com/VNHdkpU >> >> Following is the config. >> >> <?xml version="1.0" encoding="utf-8"?> >> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> >> <application>{{app_id}}</application> >> <module>default</module> >> <version>{{app_version}}</version> >> >> <!-- loading faster --> >> <precompilation-enabled>true</precompilation-enabled> >> >> <!-- warmup --> >> <warmup-requests-enabled>true</warmup-requests-enabled> >> >> <!-- concurrentcy --> >> <threadsafe>true</threadsafe> >> >> <!-- concurrentcy --> >> <sessions-enabled>true</sessions-enabled> >> >> <inbound-services> >> <service>channel_presence</service> >> </inbound-services> >> >> <!-- scale settings --> >> >> <instance-class>F1</instance-class> >> >> <automatic-scaling> >> <min-idle-instances>1</min-idle-instances> >> <max-idle-instances>1</max-idle-instances> >> <min-pending-latency>2730ms</min-pending-latency> >> <max-pending-latency>automatic</max-pending-latency> >> <max-concurrent-requests>50</max-concurrent-requests> >> </automatic-scaling> >> >> <!-- Configure java.util.logging --> >> <system-properties> >> <property name="java.util.logging.config.file" >> value="WEB-INF/logging.properties"/> >> </system-properties> >> >> <static-files> >> <include path="/favicon.ico" /> >> <include path="/crossdomain.xml" /> >> <include path="/css/**.*" expiration="1d"/> >> <include path="/swfs/**.swf" expiration="365d" /> >> <include path="/js/**.js" expiration="1d" /> >> <include path="/images/**.ico" expiration="1d" /> >> <include path="/images/**.png" expiration="1d" /> >> <include path="/images/**.gif" expiration="1d" /> >> <include path="/images/**.jpg" expiration="1d" /> >> <include path="/htmls/**.i*" expiration="1d" /> >> </static-files> >> >> </appengine-web-app> >> >> >> -- >> 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] <javascript:>. >> To post to this group, send email to >> [email protected]<javascript:> >> . >> Visit this group at http://groups.google.com/group/google-appengine. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- 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.
