On Mon, Feb 23, 2015 at 11:36 AM, Purushotham Rao < [email protected]> wrote:
> On initialization of application we will establish a connection with Cloud > SQL, getting below exception and causing the instance to exit and creating > a new instance. > Since you're running the SQL connection during init, it's difficult to figure out what exactly is the culprit: is the SQL connection taking too long to finish, then hitting the request deadline which cancels the getMetadata operation, or is there an error in the connection that cancels the function? Can you try moving the connection code out of init and into a regular request handler, then hitting the handler from a cron request? Does the connection work then? If so, how long does the SQL connection take from start to finish? Have you configured anything unusual connection-wise in the SQL driver? Also, have you modified the max-concurrent-requests setting <https://code.google.com/p/googleappengine/issues/detail?id=7927>? ----------------- -Vinny P Technology & Media Consultant 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 [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/CALSvALBrjKZuSK0Dgb_CYOJxeZi-Zrhza_c%2BnjqQmBzNWGLDfw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
