What is the difference between AWS lambda and AWS Lambda@EDGE?

12,845

Solution 1

Lambda executes functions based on certain triggers. The use case for Lambda is quite broad and there is heavy integration with many AWS Services. You can even use it to simply execute the code via AWS's API and receive the code into your scripts separate from AWS. Common use cases include Lambdas being simply executed and the output received, plugged into API Gateway to serve user requests, modifying objects as they are placed into S3 buckets, etc.

Lambda@Edge is a service that allows you to execute Lambda functions that modify the behaviour of CloudFront specifically. Lambda@Edge simply runs during the request cycle and makes logical decisions that affect the delivery of the CloudFront content.

https://aws.amazon.com/lambda/features/

https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html

Solution 2

  • Lambda@Edge is Lambda functions in response to CloudFront events.
  • You still create lambda@edge function under Lambda, but Lambda@Edge function must be created in us-east-1.
  • You need configure lambda@edge to the cloundfront distribution behavior on viewer request or others.

Solution 3

  • has to be created in us-east-1 region
  • if code taken from bucket, bucket also needs to be in us-east-1 region
  • you can't pass environment variables the same way as to normal lambda fn. Either you need to hardcode values during build process or hardcode env and fetch values from somewhere else.

Solution 4

Lambda is a serverless AWS compute service that allows user to run code as function trigger. In file processing, optimization, lot of use cases.

On the other hand Lamda@Edge is extension of AWS lambda, is a feature of cloudfront that allows user run code closer to the application, so improves performance and reduce latency.

Here is the official documentation describe nicely about Lambda@Edge https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html

Share:
12,845
mnhmilu
Author by

mnhmilu

Software Professional

Updated on June 13, 2022

Comments

  • mnhmilu
    mnhmilu almost 2 years

    What is the difference between simple aws lambda and aws lambda@edge ?