Hacker News new | ask | show | jobs
by throwaway2016a 1340 days ago
Interesting, I haven't had the experience with CloudFormation.

At that scale, however, I tend to group my Lambdas as microservices not per endpoint. It helps with cold start time as well. So for example, if I have a page" resource, I don't make that 5+ endpoints, I make it a wildcard / prefix match and do the routing inside of the service lambda.

Maybe you legitimately have 100+ different microservices, in which case, I don't doubt that is a problem, I just haven't experienced it.

1 comments

I mean, there are certainly ways to work around the silly limitations. I just feel like I shouldn’t have to.