How does scaling affect serverless cold starts?
Scaling horizontally by adding more copies of the same function doesn't significantly increase cold starts. However, scaling vertically by adding many different, low-traffic functions is problematic. When you have dozens of functions that only get called occasionally, each one can go cold between requests, leading to cold starts occurring constantly across your entire system as traffic gets split up and nothing stays 'warm' consistently.