-
AWS Lambda: pricing model and pitfalls
The pay per use pricing model of function as a service makes it appear to be really cheap. For a lot of workloads, it is really a lot cheaper and maybe even free. There’s a lot of costs that can quickly add up and surprise businesses.
-
How to Resolve Serverless error: lambda is not a function
When trying to invoke any of your lambda functions if you are getting an error that says “lambda is not a function” the problem is likely that the handler is misspelled in the serverless.yml file OR you aren’t exporting modules.exports.handler and are instead exporting something else.
-
How to Adapt to Serverless Computing
Serverless computing is a really new and very trans formative change that allow companies to grow and scale their businesses very quickly. Serverless computing done correctly has the potential to dramatically increase development velocity, and reduce costs. In my blog post, What is Serverless Computing I covered what it is and some of the vendors […]
-
What is Serverless Computing
In the ten years or so that I have been programming professionally, there’s been significant changes to the way we did things whether it be the way we developed software, the way we managed software, or the environments we used to execute our code. Over time, these changes have become increasingly more and more dramatic […]
-
Configuring the Serverless Framework to Work with Amazon Web Services (AWS)
onnecting the Serverless Framework to AWS is pretty painless once we have downloaded our credentials from AWS. In this blog post, we’ll touch on how to get our AWS API credentials, configure serverless and set up a project for it.