1

I have a general understanding of serverless architecture. I was wondering what are the top pro's and con's using this architecture compared to the previous generally used architectures.

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Altus
  • 1,315
  • 3
  • 11
  • 19

1 Answers1

3

Pros

  1. Invoke Lambda Functions only during event triggering VS keeping Instance(s) idle for a reasonable amount of time.

  2. Pay only for what you are going to use VS pay for the running idle instance.

  3. Easily Integrate with other popular AWS Services e.g API Gateway, S3, SNS, CloudTrail, etc.

  4. IAM Policies are configurable to each lambda function.

  5. Scalable depending on the rate of invocations.

Cons

  1. Only 15 minutes with finite RAM is supported as of now ,so not for heavy and complex processing.

  2. Only popular programming language support.

Conclusion

It depends on your use-case as to whether use lambda or not !

Zack Light
  • 167
  • 2
  • 11
tom
  • 3,720
  • 5
  • 26
  • 48