Add AWS Lambda worker support - #1546
Draft
eamsden wants to merge 2 commits into
Draft
Conversation
eamsden
force-pushed
the
eamsden/aws-lambda-fresh
branch
from
August 28, 2026 23:17
7e40fa0 to
dfc6015
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What was changed
temporalio-sdk-aws-lambdaintegration crate.temporal.tomlfiles.Why?
AWS Lambda invocations have a bounded execution window and need time reserved for graceful Worker shutdown, telemetry export, and final cleanup. This adapter centralizes those host-specific lifecycle concerns and applies the constrained defaults used by the other Temporal SDK Lambda integrations. A general Rust SDK OpenTelemetry plugin, including cross-process trace-context propagation, is intentionally outside this PR.
Checklist
Closes: N/A
How was this tested:
cargo test -p temporalio-sdk-aws-lambdacargo test -p temporalio-sdk-aws-lambda --features otelcargo lintcargo test-lintcargo +nightly fmt --checkRUSTDOCFLAGS=-Dwarnings cargo doc -p temporalio-sdk-aws-lambda --features temporalio-sdk-aws-lambda/otel --no-depsgit diff --checkAn AWS Runtime Interface Emulator deployment smoke test remains as follow-up work.
The new crate includes a README covering setup, ADOT configuration, and custom-runtime guidance. Broader docs.temporal.io coverage and a deployable sample can follow once the experimental API is validated.