Is there any potential for extending that limit? I work on a product that uses Fargate Spot as a kind-of lambda substitute to run longer-duration tasks consumed from SQS and being able to use lambda to do that would make life easier :)
Instances take longer to start up; Lambda processes requests in milliseconds or less. Lambda automatically manages a pool for you.
If you're running a predictable process and you know how long it'll take in advance, an instance may make sense. If you're running an unpredictable process, where you won't know how long it'll take until it's done, and it might be quite fast, the low startup time and fine-granularity billing helps.
- Chris Munns - Lead of Dev Advocacy - Serverless@AWS