docs: Serverless Workers - Go SDK pages (2/4)#4418
Merged
lennessyy merged 4 commits intofeat/serverless-worker-prereleasefrom Apr 16, 2026
Merged
docs: Serverless Workers - Go SDK pages (2/4)#4418lennessyy merged 4 commits intofeat/serverless-worker-prereleasefrom
lennessyy merged 4 commits intofeat/serverless-worker-prereleasefrom
Conversation
Add Go SDK Serverless Workers documentation including the lambdaworker package guide for AWS Lambda, rewrite run-worker-process to focus on long-lived Workers, and remove cloud-worker (content folded in). Update sidebars, add redirect, and set broken links to warn for cross-PR references. Part of #4405. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
📖 Docs PR preview links |
…K page Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…ineBuffer is serverless-only Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
akhayam
reviewed
Apr 12, 2026
|
|
||
| The `lambdaworker` package lets you run a Temporal Serverless Worker on AWS Lambda. | ||
| Deploy your Worker code as a Lambda function, and Temporal Cloud invokes it when Tasks arrive. | ||
| Each invocation starts a Worker, polls for Tasks until the Lambda deadline approaches, then gracefully drains and shuts down. |
There was a problem hiding this comment.
Lambda deadline
Unclear what this means. If we are referring to the 15-min Lambda limit then we should explicitly call that out.
Contributor
Author
There was a problem hiding this comment.
It refers to the configurable ShutdownDeadlineBuffer parameter, not the 15 min window from Lambda. But I'll clarify here.
| - Serverless | ||
| --- | ||
|
|
||
| Serverless Workers run on serverless compute instead of long-lived processes. |
There was a problem hiding this comment.
Suggestion:
Serverless Workers run on ephemeral, on-demand compute rather than long-lived processes. Each execution is short-lived, scales automatically with demand, and does not require managing dedicated infrastructure.
- Replace ambiguous "Lambda deadline" with "configurable invocation deadline" on the AWS Lambda page (akhayam) - Rewrite tautological "serverless compute" intro on the Go SDK serverless landing page (smuneebahmad) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
32736ac
into
feat/serverless-worker-prerelease
9 of 10 checks passed
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.
Summary
lambdaworkerpackage guide for AWS Lambda and a Serverless Workers index pagerun-worker-process.mdxto focus on long-lived Workers with a clear pointer to Serverless Workerscloud-worker.mdx(content folded into run-worker-process) with a Vercel redirect to the new anchorsidebars.jsto add the Serverless Workers category under Go SDK Workersworker-performance.mdxandsticky-execution.mdxonBrokenLinksandonBrokenAnchorstowarnfor cross-PR referencesPart of the serverless workers docs split from #4405 (PR 2 of 4).
Test plan
/develop/go/workers/serverless-workersand/develop/go/workers/serverless-workers/aws-lambdaload correctly/develop/go/workers/cloud-workerredirects to/develop/go/workers/run-worker-process#connect-to-temporal-cloud🤖 Generated with Claude Code
┆Attachments: EDU-6190 docs: Serverless Workers - Go SDK pages (2/4)