● Mind startup time
When scale out, Cloud Run will: retrieve container, start container and
run entrypoint command to start the server. Seems like no option to
define the number of minimum up container
● Delete temporary files
Cloud Run disk system uses in-memory filesystem. If you don’t, will get
out-of-memory error eventually and goes to cold start.
● Tune concurrency config
Concurrency in Run means “serve multiple requests simultaneously”.
Default is 80 and that is the maximum. Cloud Function has a fixed
concurrency of 1.
Any tips to create an app for Cloud Run?