Difference between revisions of "AWS/Lambda"

From Christoph's Personal Wiki
Jump to: navigation, search
Line 1: Line 1:
 
'''AWS Lambda''' ("serverless compute") lets you run code without provisioning or managing servers. Amazon announced AWS Lambda in November 2014. You pay only for the compute time you consume - there is no charge when your code is not running. With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.
 
'''AWS Lambda''' ("serverless compute") lets you run code without provisioning or managing servers. Amazon announced AWS Lambda in November 2014. You pay only for the compute time you consume - there is no charge when your code is not running. With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.
 +
 +
As of January 2017, your Lambda function needs to finish its work within [http://docs.aws.amazon.com/lambda/latest/dg/limits.html 300 seconds].
 +
As of January 2017, Lambda supports Node.js, Java, and Python.
  
 
==External links==
 
==External links==

Revision as of 20:03, 5 January 2017

AWS Lambda ("serverless compute") lets you run code without provisioning or managing servers. Amazon announced AWS Lambda in November 2014. You pay only for the compute time you consume - there is no charge when your code is not running. With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.

As of January 2017, your Lambda function needs to finish its work within 300 seconds. As of January 2017, Lambda supports Node.js, Java, and Python.

External links