I find it interesting the perspective difference between those who use servers and those who use Serverless, specifically around concurrency.
For example those who use servers talk about Node.js cluster module via pm2/forever, or Python asyncio / pool.
Yet on AWS… you don’t use those things. Even on ECS, using pm2/forever is kind of dumb. They have servers and containers… if a container crashes, just spawn another one. Need more? Spawn more servers and containers. Not limited to CPU core. Same for Python.
(more…)