Skip to content

Commit 103e084

Browse files
sbbhimjibfreiberg
andauthored
Apply suggestions from code review
Co-authored-by: Ben <9841563+bfreiberg@users.noreply.github.com>
1 parent 9fe29ba commit 103e084

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

lambda-durable-function-chaining-sam/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Function Chaining with AWS Lambda Durable Functions
1+
# Function chaining with AWS Lambda durable functions
22

33
This pattern demonstrates the **function chaining** workflow pattern using AWS Lambda durable functions. A durable orchestrator chains three Lambda functions sequentially, with automatic checkpointing after each step for fault tolerance.
44

@@ -64,9 +64,9 @@ flowchart LR
6464

6565
The orchestrator uses `context.invoke()` to chain 3 Lambda functions with automatic checkpointing.
6666
67-
### What are Lambda Durable Functions?
67+
### What are AWS Lambda durable functions?
6868
69-
Lambda durable functions enable resilient, long-running workflows with automatic state management. Key capabilities:
69+
Lambda durable functions enable you to build resilient, long-running workflows with automatic state management. Key capabilities:
7070
7171
- **Checkpoint/Replay**: Each `context.invoke()` creates a checkpoint. If the function fails, it replays from the beginning but skips completed steps using stored results.
7272
- **Fault Tolerance**: Workflows automatically recover from failures without re-executing completed work.

lambda-durable-function-chaining-sam/example-pattern.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "Function Chaining with AWS Lambda Durable Functions",
2+
"title": "Function chaining with AWS Lambda durable functions",
33
"description": "Demonstrates the function chaining pattern using Lambda durable functions with automatic checkpointing and fault-tolerant sequential execution",
44
"language": "Python",
55
"level": "200",
@@ -58,15 +58,15 @@
5858
},
5959
"cleanup": {
6060
"text": [
61-
"Delete the stack: `sam delete`"
61+
"Delete the stack: <code>sam delete</code>"
6262
]
6363
},
6464
"authors": [
6565
{
6666
"name": "Sahil Bhimjiani",
6767
"image": "https://drive.google.com/file/d/1E2p7S5UtU36x6Sk1xPS3XnSGJyIUoqK7/view?usp=drivesdk",
6868
"bio": "Sahil Bhimjiani is a Solutions Architect at Amazon Web Services.",
69-
"linkedin": "https://www.linkedin.com/in/sahil9701/"
69+
"linkedin": "sahil9701"
7070
},
7171
{
7272
"name": "Anup Rajpara",

lambda-durable-function-chaining-sam/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AWSTemplateFormatVersion: '2010-09-09'
22
Transform: AWS::Serverless-2016-10-31
3-
Description: Function Chaining with AWS Lambda Durable Functions
3+
Description: Function chaining with AWS Lambda durable functions
44

55
Globals:
66
Function:

0 commit comments

Comments
 (0)