Why I love AWS Lambda

Written by peterchang_82818 | Published 2018/06/26
Tech Story Tags: aws-lambda | aws | aws-api-gateway | scalability | javascript

TLDRvia the TL;DR App

My team and I have played around Lambda in different aspect, such as CI/CD pipeline (CodeCommit/CloudFoamtion), image processing and database query. Lambda has the form of water, which can penetrate to every corner of AWS services, great integrated with other services. And the event driven design by event source object. I would say Lambda is a masterpiece of cloud services.

Lambda is an effortless operational paradise, I just focus on Nodejs development without worrying about deployment, logs, public URL configuration.

Why Lambda

— Perfect integration with powerful AWS services — API Gateway and Lambda. It helps to implement an production API with public URL, just within few clicks.

— It is completely event driven, it will only run when invoked. This is perfect for application services having quiet periods followed by peaks in traffic. Also this advantage helps and it is 100% no operations

Scalability, Lambda can instantly scale up to a large number of parallel executions, for which the limit is controlled by the Number of concurrent requests. Downscaling is handled simply by automatically terminating the Lambda function execution when do code finishes running.

Reference:

https://www.contino.io/insights/5-killer-use-cases-for-aws-lambda


Published by HackerNoon on 2018/06/26