Hi Miroslav. I'm unclear on what you mean by this.
Normally modules don't just serve requests, unless they get called explicitely. Scaling will change (depending on where you put that scaling) how the instances for the regular traffic serves. Since you need to specifically call modules, traffic to them will not just go there, you need to call it. On Tuesday, June 2, 2015 at 11:22:06 AM UTC-4, Miroslav Genov wrote: > > Hello again, > > We tried some scenario, and here are the results. > > <automatic-scaling> > <min-idle-instances>3</min-idle-instances> > <!-- ‘automatic’ is the default value. --> > <max-idle-instances>10</max-idle-instances> > <!-- ‘automatic’ is the default value. --> > <min-pending-latency>30ms</min-pending-latency> > <max-pending-latency>automatic</max-pending-latency> > <max-concurrent-requests>100</max-concurrent-requests> > </automatic-scaling> > > > > <https://lh3.googleusercontent.com/-uTQtpj_BaqA/VW3JojfZOHI/AAAAAAAAGxs/DYFGyKHA7x8/s1600/pic1.png> > > <automatic-scaling> > <min-idle-instances>1</min-idle-instances> > <!-- ‘automatic’ is the default value. --> > <max-idle-instances>10</max-idle-instances> > <!-- ‘automatic’ is the default value. --> > <min-pending-latency>30ms</min-pending-latency> > <max-pending-latency>automatic</max-pending-latency> > <max-concurrent-requests>50</max-concurrent-requests> > </automatic-scaling> > > > > <https://lh3.googleusercontent.com/-psY_PITrhJs/VW3JxYQVGbI/AAAAAAAAGx0/LbjkCeFJgOg/s1600/pic2.png> > > > <automatic-scaling> > <min-idle-instances>1</min-idle-instances> > <!-- ‘automatic’ is the default value. --> > <max-idle-instances>10</max-idle-instances> > <!-- ‘automatic’ is the default value. --> > <min-pending-latency>30ms</min-pending-latency> > <max-pending-latency>automatic</max-pending-latency> > <max-concurrent-requests>10</max-concurrent-requests> > </automatic-scaling> > > > > > <https://lh3.googleusercontent.com/-9N_Bx_qR2qo/VW3J5i2ECsI/AAAAAAAAGx8/P1v2J1-BYnw/s1600/pic3.png> > > > As you can see, there is no difference where module app is used or single > app. Can you give us some light on this ? > > > On Thursday, May 28, 2015 at 5:13:22 PM UTC+3, Patrice (Cloud Platform > Support) wrote: >> >> Hi again Miroslav, >> >> Happy that you like the speed, we've been working on being better on that >> :). >> >> In any case, it turns out even backends >> <https://cloud.google.com/appengine/docs/python/backends/#Python_Addressing_backends>, >> >> seems like they need to be explicitly called to serve, so that may be >> what's happening here. >> >> Cheers! >> >> On Thursday, May 28, 2015 at 9:34:00 AM UTC-4, Miroslav Genov wrote: >>> >>> This is an old app (maybe 3-4 years), so we have not migrated our stuff >>> to use modules. In next 2 days, we will give it try to see where the things >>> gonna change. >>> >>> Thanks for the fast feedback. >>> >>> On Thursday, May 28, 2015 at 4:23:25 PM UTC+3, Patrice (Cloud Platform >>> Support) wrote: >>>> >>>> Hi Miroslav, >>>> >>>> Normally, Resident instances are for modules, so unless your requests >>>> go straight to the module, the behavior you are experiencing is normal. >>>> >>>> Do you have a module in your application? >>>> >>>> Cheers! >>>> >>>> On Wednesday, May 27, 2015 at 7:10:27 PM UTC-4, Miroslav Genov wrote: >>>>> >>>>> Hello, >>>>> >>>>> I'm encountering strange issue with resident instances. It seems that >>>>> instance is up and running, but the GAE load balancer does not pass >>>>> requests to it. Is this a normal behaviour or some kind of bug? >>>>> >>>>> Here is a screenshot from my dashboard: >>>>> >>>>> >>>>> <https://lh3.googleusercontent.com/-c6sZBFFxdYs/VWZOzmSiq7I/AAAAAAAAGw0/UbcT-oSpz1E/s1600/Screen%2BShot%2B2015-05-28%2Bat%2B2.08.04%2BAM.png> >>>>> >>>>> >>>>> Thanks in advance. >>>>> >>>>> -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/7f3021d1-ad0a-4570-bec8-73b05a7fe620%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
