Versioning - TypeScript SDK
The Temporal Platform requires that Workflow code is deterministic. Because of that requirement, the Temporal TypeScript SDK offers two dedicated versioning features.
Alternatives
Before you explore dedicated versioning features, check whether your needs can be addressed in other ways:
Both options mean that Workflows running v1
code will never migrate to v2
code; they will run v1
code to completion.
If you would like to update Workflows running v1
while they are still running, you might need to "patch in" code.
Version Task Queue
If you're currently running v1 Workflow code on Workers that poll on queue1
, you can run v2 Workflow code on Workers that poll on queue2
:
- Leave some Workers running your v1
Workflow
, on thequeue1
Task Queue. - Change your
Workflow
code and spin up new Workers that are polling aqueue2
Task Queue. - Cut over your Clients to only call
Workflow
onqueue2
from now on. - Remove your v1 Workers when all the v1 Workflows have completed.
Version Workflow Name
Although versioning the Task Queue is usually easier, we can also create a new version of a Workflow by copying it and changing its name:
- Copy the
Workflow1
code to aWorkflow2
function and change what you need. - Register
Workflow2
in your Workers alongsideWorkflow1
. - Cut over your Clients to only call
Workflow2
from now on. - Remove
Workflow1
code when none of them are running anymore.
How to patch Workflow code in TypeScript
The TypeScript SDK Patching API lets you change Workflow Definitions without causing non-deterministic behavior in current long-running Workflows.
Do I need to Patch?
You may need to patch if:
- You want to change the remaining logic of a Workflow while it is still running
- If your new logic can result in a different execution path
This added sleep()
can result in a different execution path:
// from v1
export async function yourWorkflow(value: number): Promise<number> {
await runActivity();
return 7;
}
// to v2
export async function yourWorkflow(value: number): Promise<number> {
await sleep('1 day');
await runActivity();
return 7;
}
If v2 is deployed while there's a Workflow on the runActivity
step, when the Activity completes, the Worker will try to replay the Workflow (in order to continue Workflow execution), notice that the sleep command is called and doesn't match with the Workflow's Event History, and throw a non-determinism error.
Adding a Signal Handler for a Signal type that has never been sent before does not need patching:
// from v1
export async function yourWorkflow(value: number): Promise<number> {
await sleep('1 days');
return value;
}
// to v2
const updateValueSignal = defineSignal<[number]>('updateValue');
export async function yourWorkflow(value: number): Promise<number> {
setHandler(updateValueSignal, (newValue) => (value = newValue));
await sleep('1 days');
return value;
}
Migrating Workflows in Patches
Workflow code has to be deterministic by taking the same code path when replaying History Events. Any Workflow code change that affects the order in which commands are generated breaks this assumption.
So we have to keep both the old and new code when migrating Workflows while they are still running:
- When replaying, use the original code version that generated the ongoing event history.
- When executing a new code path, always execute the new code.
30 Min Video: Introduction to Versioning
Because we design for potentially long-running Workflows at scale, versioning with Temporal works differently than with other Workflow systems. We explain more in this optional 30 minute introduction: https://www.youtube.com/watch?v=kkP899WxgzY
TypeScript SDK Patching API
In principle, the TypeScript SDK's patching mechanism works in a similar "feature-flag" fashion to the other SDKs; however, the "versioning" API has been updated to a notion of "patching in" code. There are three steps to this reflecting three stages of migration:
- Running v1 code with vFinal patched in concurrently
- Running vFinal code with deprecation markers for vFinal patches
- Running "just" vFinal code.
This is best explained in sequence (click through to follow along using our SDK sample).
Given an initial Workflow version v1
:
patching-api/src/workflows-v1.ts
// v1
export async function myWorkflow(): Promise<void> {
await activityA();
await sleep('1 days'); // arbitrary long sleep to simulate a long running workflow we need to patch
await activityThatMustRunAfterA();
}
We decide to update our code and run activityB
instead.
This is our desired end state, vFinal
.
patching-api/src/workflows-vFinal.ts
// vFinal
export async function myWorkflow(): Promise<void> {
await activityB();
await sleep('1 days');
}
Problem: We cannot directly deploy vFinal
until we know for sure there are no more running Workflows created using v1
code.
Instead we must deploy v2
(below) and use the patched
function to check which version of the code should be executed.
Patching is a three-step process:
- Patch in new code with
patched
and run it alongside old code - Remove old code and
deprecatePatch
- When you are sure all old Workflows are done executing, remove
deprecatePatch
Step 1: Patch in new code
patched
inserts a marker into the Workflow history.
During replay, when a Worker picks up a history with that marker it will fail the Workflow task when running Workflow code that does not emit the same patch marker (in this case your-change-id
); therefore it is safe to deploy code from v2
in a "feature flag" alongside the original version (v1
).
patching-api/src/workflows-v2.ts
// v2
import { patched } from '@temporalio/workflow';
export async function myWorkflow(): Promise<void> {
if (patched('my-change-id')) {
await activityB();
await sleep('1 days');
} else {
await activityA();
await sleep('1 days');
await activityThatMustRunAfterA();
}
}
Step 2: Deprecate patch
When we know that all Workflows started with v1
code have completed, we can deprecate the patch.
Deprecated patches bridge between v2
and vFinal
(the end result).
They work similarly to regular patches by recording a marker in the Workflow history.
This marker does not fail replay when Workflow code does not emit it.
If while we're deploying v3
(below) there are still live Workers running v2
code and those Workers pick up Workflow histories generated by v3
, they will safely use the patched branch.
patching-api/src/workflows-v3.ts
// v3
import { deprecatePatch } from '@temporalio/workflow';
export async function myWorkflow(): Promise<void> {
deprecatePatch('my-change-id');
await activityB();
await sleep('1 days');
}
Step 3: Solely deploy new code
vFinal
is safe to deploy once all v2
or earlier Workflows are complete due to the assertion mentioned above.
Upgrading Workflow dependencies
Upgrading Workflow dependencies (such as ones installed into node_modules
) might break determinism in unpredictable ways.
We recommended using a lock file (package-lock.json
or yarn.lock
) to fix Workflow dependency versions and gain control of when they're updated.
How to use Worker Versioning in TypeScript
Worker Versioning is currently in Pre-release.
See the Pre-release README for more information.
A Build ID corresponds to a deployment. If you don't already have one, we recommend a hash of the code--such as a Git SHA--combined with a human-readable timestamp. To use Worker Versioning, you need to pass a Build ID to your Typescript Worker and opt in to Worker Versioning.
Assign a Build ID to your Worker and opt in to Worker Versioning
You should understand assignment rules before completing this step. See the Worker Versioning Pre-release README for more information.
To enable Worker Versioning for your Worker, assign the Build ID--perhaps from an environment variable--and turn it on.
// ...
const worker = await Worker.create({
taskQueue: 'your_task_queue_name',
buildId: buildId,
useVersioning: true,
// ...
});
// ...
Importantly, when you start this Worker, it won't receive any tasks until you set up assignment rules.
Specify versions for Activities, Child Workflows, and Continue-as-New Workflows
Typescript support for this feature is under construction!
By default, Activities, Child Workflows, and Continue-as-New Workflows are run on the build of the Workflow that created them if they are also configured to run on the same Task Queue. When configured to run on a separate task queue, they will default to using the current assignment rules.
If you want to override this behavior, you can specify your intent via the versioningIntent
field available on the options object for each of these commands.
For example, if you want an Activity to use the latest assignment rules rather than inheriting from its parent:
// ...
const { echo } = proxyActivities<typeof activities>({
startToCloseTimeout: '20s',
versioningIntent: 'USE_ASSIGNMENT_RULES',
});
// ...
Tell the Task Queue about your Worker's Build ID (Deprecated)
This section is for a previous Worker Versioning API that is deprecated and will go away at some point. Please redirect your attention to Worker Versioning.
Now you can use the SDK (or the Temporal CLI) to tell the Task Queue about your Worker's Build ID. You might want to do this as part of your CI deployment process.
// ...
await client.taskQueue.updateBuildIdCompatibility('your_task_queue_name', {
operation: 'addNewIdInNewDefaultSet',
buildId: 'deadbeef',
});
This code adds the deadbeef
Build ID to the Task Queue as the sole version in a new version set, which becomes the default for the queue.
New Workflows execute on Workers with this Build ID, and existing ones will continue to process by appropriately compatible Workers.
If, instead, you want to add the Build ID to an existing compatible set, you can do this:
// ...
await client.taskQueue.updateBuildIdCompatibility('your_task_queue_name', {
operation: 'addNewCompatibleVersion',
buildId: 'deadbeef',
existingCompatibleBuildId: 'some-existing-build-id',
});
This code adds deadbeef
to the existing compatible set containing some-existing-build-id
and marks it as the new default Build ID for that set.
You can promote an existing Build ID in a set to be the default for that set:
// ...
await client.taskQueue.updateBuildIdCompatibility('your_task_queue_name', {
operation: 'promoteBuildIdWithinSet',
buildId: 'deadbeef',
});
You can promote an entire set to become the default set for the queue. New Workflows will start using that set's default build.
// ...
await client.taskQueue.updateBuildIdCompatibility('your_task_queue_name', {
operation: 'promoteSetByBuildId',
buildId: 'deadbeef',
});
You can merge two sets into one, preserving the primary set's default Build ID as the default for the merged set.
// ...
await client.taskQueue.updateBuildIdCompatibility('your_task_queue_name', {
operation: 'mergeSets',
primaryBuildId: 'deadbeef',
secondaryBuildId: 'some-existing-build-id',
});