Skip to content

Conversation

@aws-tam-sethums
Copy link

Issue #, if available:

Description of changes:

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

{
"name": "nodejs-durable-order-processor",
"version": "1.0.0",
"description": "AWS Lambda Durable Functions - Node.js Orchestrator with structured logging and error handling",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"description": "AWS Lambda Durable Functions - Node.js Orchestrator with structured logging and error handling",
"description": "AWS Lambda durable functions - Node.js orchestrator with structured logging and error handling",

@@ -0,0 +1,63 @@
{
"title": "AWS Lambda Durable Functions with Node.js",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"title": "AWS Lambda Durable Functions with Node.js",
"title": "AWS Lambda durable functions with Node.js",

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make sure to always use the correct capitalization

@@ -0,0 +1,63 @@
{
"title": "AWS Lambda Durable Functions with Node.js",
"description": "Demonstrates AWS Lambda Durable Functions using Node.js with automatic checkpointing, durable waits, and fault tolerance for long-running workflows.",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"description": "Demonstrates AWS Lambda Durable Functions using Node.js with automatic checkpointing, durable waits, and fault tolerance for long-running workflows.",
"description": "Demonstrates AWS Lambda durable functions using Node.js with automatic checkpointing, durable waits, and fault tolerance for long-running workflows.",

},
"cleanup": {
"text": [
"Delete the stack: sam delete --stack-name durable-functions-demo"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Delete the stack: sam delete --stack-name durable-functions-demo"
"Delete the stack: <code>sam delete --stack-name durable-functions-demo</code>"

@@ -0,0 +1,279 @@
# AWS Lambda Durable Functions with Node.js
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# AWS Lambda Durable Functions with Node.js
# AWS Lambda durable functions with Node.js

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make sure to always use the correct capitalization

@@ -0,0 +1,112 @@
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: AWS Lambda Durable Functions - Node.js Order Processing Demo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check correct name


Globals:
Function:
Runtime: nodejs22.x
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not the latest runtime?

Globals:
Function:
Runtime: nodejs22.x
Timeout: 900
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is such a long timeout necessary?

Timeout: 900
MemorySize: 512
Architectures:
- x86_64
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not arm64?


Resources:
# IAM Role for Lambda Functions
LambdaDurableExecutionRole:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These permissions are overly broad. Scope them to the relevant resources

@bfreiberg bfreiberg added the durable functions Pattern for AWS Lambda durable functions label Feb 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

durable functions Pattern for AWS Lambda durable functions

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants