AWS Lambda Makes Serverless Applications a Reality
techcrunch.com
AWS Lambda Makes Serverless Applications a Reality
1–10 of 55 posts
Re: AWS Lambda Makes Serverless Applications a Reality
#2[1] https://gist.githubusercontent.com/mpdehaan/d979252b9c69cfd1...
Re: AWS Lambda Makes Serverless Applications a Reality
#3It's awesome!.. Until you have to deal with the cold start issue. Our first call takes about 1.5 seconds; and then all other calls take about 50-80ms.
Your container stays in cache about 5-10 minutes unless it is called back, there are no guarantees.
This micro service is not called often and for us 1.5 seconds is never acceptable.
Re: AWS Lambda Makes Serverless Applications a Reality
#4It's funny we tested lambda + Amazon gateway api this week at work. It's awesome!.. Until you have to deal with the cold start issue. Our first call takes about 1.5 seconds; and then all other calls take about 50-80ms. Your container stays in cache about 5-10 minutes unless it is called back, there are no guarantees. This micro service is not called often and for us 1.5 seconds is never acceptable.
Re: AWS Lambda Makes Serverless Applications a Reality
#5It's funny we tested lambda + Amazon gateway api this week at work. It's awesome!.. Until you have to deal with the cold start issue. Our first call takes about 1.5 seconds; and then all other calls take about 50-80ms. Your container stays in cache about 5-10 minutes unless it is called back, there are no guarantees. This micro service is not called often and for us 1.5 seconds is never acceptable.
You could use a scheduled cron task in Lambda to make requests to keep your API hot.
Re: AWS Lambda Makes Serverless Applications a Reality
#6Re: AWS Lambda Makes Serverless Applications a Reality
#7We're considering using API Gateway and Lambda for our upcoming API service. Would love to hear feedback from anyone who's tried it. From the linked article, I got one gist [1] which wasn't very favorable for the API Gateway + Lambda setup. [1] https://gist.githubusercontent.com/mpdehaan/d979252b9c69cfd1...
And here is an example: https://github.com/MitocGroup/deep-microservices-todo-app
Based on our experience, currently AWS Lambda is amazing for data / content / asset management use cases. Cold start is a known issue, which I hope AWS will solve sooner rather than later, because a lot of customers are complaining about it ;)
Re: AWS Lambda Makes Serverless Applications a Reality
#8We're also using this at mParticle Inc. to allow anybody to add themselves as an integration[2]. The point being that Lambda is a super-easy way to write _some_ server logic, even if it only serves as a proxy to something more complex.
[1] https://developer.amazon.com/public/solutions/alexa/alexa-sk...
Re: AWS Lambda Makes Serverless Applications a Reality
#9Serverless = using someone elses servers?
Quote - Serverless doesn’t mean servers are no longer involved. It simply means that developers no longer have to think "that much" about them. Computing resources get used as services without having to manage around physical capacities or limits.