We have a nodejs monorepo project with >179 packages where each package may have >30 files. It also contains proxy with routing and several forked processes (as usual). So, when we packed all of this stuff into Docker image and moved it into CloudRun (with min instance = 1, max instance >10, concurrency=1000), users randomly start see the error '429 Rate exceeded'. (As far as we understood from the documentation, it happens when 'max instances' limit is reached by CloudRun and it can not scale our application anymore. Indirect reason of that maybe too long cold start (which is also limited in CloudRun = 10s). We measured our cold start - it was ~20sec.
To identify the issue of cold start we used this package - https://www.npmjs.com/package/require-so-slow
It showed us that each our small module requires ~5ms for 'import' or 'require' modules. So, average calculation may show why do we have so long cold start: 170 packages * 30 files * 5ms > 25s
For monorepo we use pnmpm and each package builds with tsc.
So, the question is how to improve cold start in CloudRun?
Note: Locally, on dev environment on laptops, we do not have issue with cold start, only in CloudRun. So, looks like, this issue is a platform specific issue.
UPDATED: the best approach at this moment, for our case, is bundling all project (or partially) into single js file (with help of webpack or esbuild, like here) + Cloud Run 'cpu boost' option
...this is continuation for comments above...
3.2) Starting point for nodejs bundling can be this webpack.config.js:
package.json
command to start bundling:
env.output
- uses for emitting *.d.ts files