from Hacker News

Serverless Functions with Multiple Cores

by groundthrower on 11/17/20, 6:35 PM with 2 comments

I have an Rust application that scales with number of CPU cores available. However, for example AWS Lambda only has a few cores available in their highest memory configuration.

Are there any such services available?

  • by whb07 on 11/17/20, 7:25 PM

    Why would this be necessary? Assume you have 4 requests coming in concurrently, AWS would just route to 4 different lambdas. Otherwise why even go down this route?