[google-appengine] Re: google app engine and big file generating

2020-01-27 Thread 'Aref Amiri (Cloud Platform Support)' via Google App Engine
You may want to consider using Cloud Tasks , as it is mainly used to manage the execution of a large number of distributed tasks. It allows you to execute tasks asynchronously and control those requests to better manage the load on your

[google-appengine] Re: app.yaml mismatch in documentation with php7.3

2020-01-27 Thread 'Olu' via Google App Engine
To add more context, you probably would have to get an entry point(rather than having two entry points) and from within this entry point, you would be able to redirect traffic as you want. On Monday, January 27, 2020 at 12:10:27 PM UTC-5, Olu wrote: > > Actually, this is the expected behavior

[google-appengine] Re: app.yaml mismatch in documentation with php7.3

2020-01-27 Thread 'Olu' via Google App Engine
Actually, this is the expected behavior with the PHP 7. As explained in this documentation[1], the only acceptable value for the script element in the App.yaml file is "auto" because all traffic is served using the entrypoint command. The PhP 7 Runtime simply wants you to have a Front