deatils on Lambda
This commit is contained in:
parent
7f942bbffd
commit
1293a6009b
|
@ -834,9 +834,20 @@ aws s3 cp s3://<bucketname>/foo_public.xml . --no-sign-request
|
||||||
### Lambda
|
### Lambda
|
||||||
|
|
||||||
Lambda is a serverless, event-driven compute service offered by AWS. Means, you
|
Lambda is a serverless, event-driven compute service offered by AWS. Means, you
|
||||||
don't need a backend to a function you want to provider. A Lambda function
|
don't need a backend to a function you want to provider. Queries to the
|
||||||
has its own container deployed.
|
function containing events are send via an API. Invocation of the Lambda
|
||||||
A Lambda function can for 15 minutes at max.
|
functions can be synchronous or asynchronous, but not in parallel. The event
|
||||||
|
and its context are sent through a lambda handler.
|
||||||
|
A Lambda function has its own container deployed. An instance is initiated as a
|
||||||
|
cold start at first run.
|
||||||
|
|
||||||
|
.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### CloudFront
|
### CloudFront
|
||||||
|
|
||||||
CloudFront is a Content Delivery Network(CDN), which stores static data on Edge
|
CloudFront is a Content Delivery Network(CDN), which stores static data on Edge
|
||||||
|
|
Loading…
Reference in New Issue