Skip to content

Commit

Permalink
Updated Lambda notes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyhau committed Jul 6, 2023
1 parent 0a184f8 commit dfa26e7
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions Lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

Jump to
- [Useful Libs and Tools](#useful-libs-and-tools)
- [Synchronous Invokes, Asynchronous Invokes, Poll-Based Invokes](#synchronous-invokes-asynchronous-invokes-poll-based-invokes)
- [MLTA, Debugging, Error Handling](#mlta-debugging-error-handling)
- [Useful blog posts](#useful-blog-posts)
- [How errors should be handled for Asynchronous Invocations](#how-error-should-be-handled-for-asynchronous-invocations)
- [Code storage for uploaded Lambda functions (`CodeStorageExceededException`)](#code-storage-for-uploaded-lambda-functions-codestorageexceededexception)
- [Lambda Scaling and Throughput](#lambda-scaling-and-throughput)
Expand Down Expand Up @@ -59,6 +61,13 @@ Jump to
- https://docs.aws.amazon.com/cdk/latest/guide/sam.html
- Example: https://github.com/kyhau/slack-command-app-cdk

---

## Synchronous Invokes, Asynchronous Invokes, Poll-Based Invokes

- [Understanding the Different Ways to Invoke Lambda Functions](https://aws.amazon.com/blogs/architecture/understanding-the-different-ways-to-invoke-lambda-functions/), AWS, 2019-07-02


---

## MLTA, Debugging, Error Handling
Expand All @@ -75,6 +84,10 @@ Jump to
- CloudWatch
- [How to get notified on specific Lambda function error patterns using CloudWatch](https://aws.amazon.com/blogs/mt/get-notified-specific-lambda-function-error-patterns-using-cloudwatch/), AWS, 2020-08-24

### Useful blog posts

- [Implementing AWS Lambda error handling patterns](https://aws.amazon.com/blogs/compute/implementing-aws-lambda-error-handling-patterns/), AWS, 2023-07-06
- [Implementing error handling for AWS Lambda asynchronous invocations](https://aws.amazon.com/blogs/compute/implementing-error-handling-for-aws-lambda-asynchronous-invocations/), AWS, 2023-04-25

### How error should be handled for Asynchronous Invocations

Expand All @@ -87,9 +100,6 @@ Jump to
- EventBridge.
2. [Dead-letter queues](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq)

Useful blog posts
- [Implementing error handling for AWS Lambda asynchronous invocations](https://aws.amazon.com/blogs/compute/implementing-error-handling-for-aws-lambda-asynchronous-invocations/), AWS, 2023-04-25


---

Expand Down

0 comments on commit dfa26e7

Please sign in to comment.