I may have spoken too soon - turns out POST requests don't have this behaviour, and GET requests do.
Anyone have any ideas what would cause this? On Tue, 30 Jul 2019 at 20:01, James Crowley <[email protected]> wrote: > Can someone on the Google team pick this up? It turns out this is a crazy > non-obvious gotcha to hit. It turns out my app.yaml had this: > > - url: /.* > script: auto > secure: always > > and it should have been (no slash) > > - url: .* > script: auto > secure: always > > This change reduced our load times by 2 seconds per request. > > Thanks > > James > > On Tue, 30 Jul 2019 at 10:14, James Crowley <[email protected]> > wrote: > >> >> Hi - I'm trying to diagnose some significant performance issues when >> running PHP 7 in the standard AppEngine environment. >> >> I've enabled stackdriver tracing (we start the trace as the first step in >> our PHP app, in the entry point php file), and it seems to be showing the >> root URL doing an RPC call to the root URL, taking 2 seconds before any of >> our code executes? >> >> J >> >> -- >> 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 view this discussion on the web visit >> https://groups.google.com/d/msgid/google-appengine/3447d0f6-4930-4c17-9478-c139aa684768%40googlegroups.com >> <https://groups.google.com/d/msgid/google-appengine/3447d0f6-4930-4c17-9478-c139aa684768%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > > > -- > > --- > James Crowley > > linkedin: http://linkedin.com/in/jamescrowley > twitter: http://twitter.com/jamescrowley > -- --- James Crowley linkedin: http://linkedin.com/in/jamescrowley twitter: http://twitter.com/jamescrowley -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAGxK9iq9q3-7ZOqxE6s7yYzzmtZ1WZ-LOG34XAa5EdZchY6Bfg%40mail.gmail.com.
