Curious to see if the issue Erik brought up has been addressed. The issues in the public tracker seem to have not had any movement beyond being delegated to appropriate teams. I'm struggling with backend instances not shutting down with Firebse admin SDK.
On Monday, December 14, 2015 at 6:25:06 PM UTC-5, Nick (Cloud Platform Support) wrote: > > Hey Erik, > > It does seem as if this is an unintended side-effect of the Firebase > driver authors leaving their background threads running indefinitely, or > for longer than the idle timeout you've specified anyways. We monitor the > Public Issue Trackers quite regularly, so you should see responses on those > threads shortly. > > Best of luck! > > On Monday, December 14, 2015 at 4:30:51 AM UTC-5, Erik Kuefler wrote: >> >> Thanks, I filed >> https://code.google.com/p/googleappengine/issues/detail?id=12606 and >> https://code.google.com/p/googleappengine/issues/detail?id=12607 for >> features that would help me. >> >> I'll be experimenting with the method mentioned on the other thread soon, >> but it's tricky since it basically kills all of the instance's threads >> instead of just the ones for the current request, so I have to be careful >> with it. I might end up having to effectively roll my own scaling by >> keeping track of the last request the instance gets and running a >> background thread that periodically checks the last request time, killing >> all of my background threads if it sees no request has come in for the past >> 10 minutes or so. >> >> On Friday, December 11, 2015 at 10:00:36 AM UTC-8, Nick (Cloud Platform >> Support) wrote: >>> >>> Hey Erik, >>> >>> It seems that /_ah/stop is only appearing as a signal in your logs once >>> a shutdown event has occurred, either due to normal events, such as an idle >>> timeout or a call to the Modules service, or due to instance failure. >>> >>> In the other thread you linked, Michael from Firebase indicated that you >>> can use one of their methods to attempt to shut down all the Firebase >>> threads. This should prevent your instances from staying up due to idle >>> background threads. Have you managed to attempt this, and did it work for >>> you? >>> >>> You were, though, more generally, looking for a way to start and stop >>> instances in manual / basic scaling. Looking at the Modules service >>> documentation (see Java >>> <https://cloud.google.com/appengine/docs/java/javadoc/com/google/appengine/api/modules/ModulesService#setNumInstances-java.lang.String-java.lang.String-long->'s >>> >>> javadoc, note that python's >>> <http://gae-pydoc.appspot.com/google.appengine.api.modules.modules> >>> methods are parallel), there are methods to set and get the number of >>> instances in a version/module, and methods to start and stop all instances >>> in a version/module, but no methods for individual control. >>> >>> You should feel free to file a Feature Request in the Public Issue >>> Tracker <http://code.google.com/p/google-appengine/issues/list> for App >>> Engine. You could also engineer various work-arounds, such as using Managed >>> VMs, which can start and stop in a more controlled manner, also allowing >>> process control, listing of threads, etc. >>> >>> Let me know how this goes for you. >>> >>> On Thursday, December 10, 2015 at 3:42:53 AM UTC-5, Erik Kuefler wrote: >>>> >>>> Cool, that all makes sense, I think I understand what /_ah/background >>>> means now. So to clarify, every time I create a background thread, what >>>> actually happens is the AppEngine sends a request to /_ah/background on >>>> the >>>> same instance to execute that thread, and I should expect to see log >>>> output >>>> from that thread in the /_ah/background request rather than in the log >>>> from >>>> the original request? This seems to match what I see with Firebase - the >>>> trace shows that it connects to a socket for exactly 60s, then the request >>>> completes. I assume this is Firebase choosing to connect for 60s at a time >>>> rather than AppEngine killing it. >>>> >>>> The modules API looks like it's on the right track, but it doesn't seem >>>> to have a "shut down the current instance" method. It only has methods to >>>> start and stop all instances for a version or to change the number of >>>> instances for a manually scaled app, which doesn't quite do what I need. >>>> Am >>>> I reading it correctly? >>>> >>>> I'm using Firebase's newish JVM client (described a bit here >>>> <https://cloud.google.com/solutions/mobile/firebase-app-engine-android-studio>), >>>> >>>> which has explicit support for App Engine. It looks like it's pretty much >>>> the same as the Android client with some reflection magic to figure out if >>>> it's running on GAE and adjust its thread creation strategy accordingly. >>>> I'm still trying to figure out exactly how it manages its thread (talking >>>> to them here >>>> <https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/firebase-talk/Yl-Gcbo8ogQ/UAGrxIo2EAAJ>), >>>> >>>> but I believe they're used to listen on web sockets for changes to remote >>>> data to invoke user callbacks. I think I'll try running some tests on a >>>> basic scaling module capped at one instance to try and deduce exactly what >>>> it's doing. >>>> >>>> As long as you're submitting docs feedback, one other thing that I >>>> couldn't find described anywhere is how basic scaling instances handle >>>> concurrent requests. I assume it caps the number of current request in the >>>> same way autoscaling does, but the cap doesn't seem to be configurable >>>> like >>>> it is for autoscaling and it's not documented anywhere. I was getting what >>>> looked like a lot of CPU contention on my instances that I was only able >>>> to >>>> resolve by setting threadsafe to false, which was a bit more extreme than >>>> I >>>> would have preferred. >>>> >>>> On Wednesday, December 9, 2015 at 4:51:00 PM UTC-8, Nick (Cloud >>>> Platform Support) wrote: >>>>> >>>>> ... and to clarify, by "fixed" in the docs I mean that it should be >>>>> mentioned there. The behaviour makes sense - the reason is that each >>>>> background thread actually enqueues a long-running request not governed >>>>> by >>>>> the same execution timeline as a normal request. When it finally >>>>> terminates, you'll see that it leaves a log line with a timestamp of its >>>>> *termination, >>>>> *however the milliseconds spent on the request will show its actual >>>>> duration, which should be subtracted from the time of the log line to >>>>> determine when the process started. Since this request (to >>>>> /_ah/background) >>>>> is "being handled" and "has not returned yet", the instance stays up. >>>>> >>>>> On Wednesday, December 9, 2015 at 7:23:46 PM UTC-5, Nick (Cloud >>>>> Platform Support) wrote: >>>>>> >>>>>> Hey Erik, >>>>>> >>>>>> Yes, background threads yet to terminate will cause the instance to >>>>>> remain standing, regardless of the idle timeout. I've just submitted a >>>>>> docs >>>>>> feedback which will hopefully see this fixed shortly in the "Modules in >>>>>> Python" docs page. You can, as Christian suggests, use the modules >>>>>> controls >>>>>> to manually turn-down an instance. I'm curious which Firebase library >>>>>> you're using, by the way, and how it uses background threads? >>>>>> >>>>>> On Wednesday, December 9, 2015 at 4:17:16 AM UTC-5, Erik Kuefler >>>>>> wrote: >>>>>>> >>>>>>> The description of basic scaling >>>>>>> <https://cloud.google.com/appengine/docs/java/modules/#Java_Instance_scaling_and_class> >>>>>>> >>>>>>> is a little vague about the exact conditions that cause an instance >>>>>>> created >>>>>>> with basic scaling to be shut down. It says an instance is evicted when >>>>>>> it >>>>>>> "has not received a request for more than `idle-timeout`", but it's not >>>>>>> clear to me whether this includes background threads and the >>>>>>> "/_ah/background" request that they generate. >>>>>>> >>>>>>> My problem is that my machines are staying alive longer than I >>>>>>> expect them to and I suspect a background thread might be the culprit. >>>>>>> I'm >>>>>>> using a library (Firebase) that creates background threads but provides >>>>>>> no >>>>>>> way of shutting them down. Will this cause my machines to never be >>>>>>> evicted? >>>>>>> If so, is there a way for me to either forcibly terminate all >>>>>>> background >>>>>>> threads, or to shut down the instance from my own background thread (so >>>>>>> I >>>>>>> can implement my own idle timeout)? >>>>>>> >>>>>> -- 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 https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/e5749f15-3158-45fb-8eb6-cfd5497451ec%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
