Files
Donald Pinckney 766f8883fe Add TypeScript (#31)
Adds initial support for TypeScript to the skill

---------

Co-authored-by: James Watkins-Harvey <mjameswh@users.noreply.github.com>
Co-authored-by: Chris Olszewski <chrisdolszewski@gmail.com>
2026-03-07 09:41:32 -05:00

5.1 KiB

Workflow Versioning Concepts

This document provides core conceptual explanations of workflow versioning in Temporal. For language-specific implementation details see references/{your_language}/versioning.md, for the language you are working in.

Overview

Workflow versioning allows safe deployment of code changes without breaking running workflows. Three approaches available:

  1. Patching API - Code-level version branching
  2. Workflow Type Versioning - New workflow types for incompatible changes
  3. Worker Versioning - Deployment-level control with Build IDs

Why Versioning is Needed

When workers restart after deployment, they resume open workflows through history replay. If updated code produces different Commands than the original code, it causes non-determinism errors.

Original Code (recorded in history):
  await activity_a()
  await activity_b()

Updated Code (during replay):
  await activity_a()
  await activity_c()  ← Different! NondeterminismError

Approach 1: Patching API

Concept

The patching API lets you branch code based on whether a workflow was started before or after a code change.

if patched("my-change"):
    // New code path (for new and replaying new workflows)
else:
    // Old code path (for replaying old workflows)

Three-Phase Lifecycle

Phase 1: Patch In

  • Add both old and new code paths
  • New workflows take new path, old workflows take old path

Phase 2: Deprecate

  • After all old workflows complete, remove old code
  • Keep deprecation marker for history compatibility

Phase 3: Remove

  • After all deprecated workflows complete
  • Remove patch entirely, only new code remains

When to Use

  • Adding, removing, or reordering activities/child workflows
  • Changing which activity/child workflow is called
  • Any change that alters the Command sequence

When NOT to Use

  • Changing activity implementations (activities aren't replayed)
  • Changing arguments passed to activities or child workflows
  • Changing retry policies
  • Changing timer durations
  • Adding new signal/query/update handlers (additive changes are safe)
  • Bug fixes that don't change Command sequence

Unnecessary patching adds complexity and can make workflow code unmanageable.

Approach 2: Workflow Type Versioning

Concept

Create a new workflow type (e.g., OrderWorkflowV2) instead of patching.

// Old: OrderWorkflow
// New: OrderWorkflowV2 (completely new implementation)

When to Use

  • Major incompatible changes
  • Complete rewrites
  • When patching would be too complex
  • When you want clean separation

Process

  1. Create new workflow type with new name
  2. Register both with worker
  3. Start new workflows with new type
  4. Wait for old workflows to complete
  5. Remove old workflow type

Approach 3: Worker Versioning

Concept

Manage versions at deployment level using Build IDs. Multiple worker versions can run simultaneously.

Worker v1.0 (Build ID: abc123)
  └── Handles workflows started on this version

Worker v2.0 (Build ID: def456)
  └── Handles new workflows
  └── Can also handle upgraded old workflows

Key Concepts

Worker Deployment: Logical service grouping (e.g., "order-service")

Build ID: Specific code version (e.g., git commit hash)

Versioning Behaviors:

  • PINNED - Workflows stay on original worker version
  • AUTO_UPGRADE - Workflows can move to newer versions

When to Use PINNED

  • Short-running workflows (minutes to hours)
  • Consistency is critical
  • Want simplest development experience
  • Building new applications

When to Use AUTO_UPGRADE

  • Long-running workflows (weeks or months)
  • Workflows need bug fixes during execution
  • Still requires patching for version transitions

Choosing an Approach

Scenario Recommended Approach
Small change, few running workflows Patching API
Major rewrite Workflow Type Versioning
Many short workflows, frequent deploys Worker Versioning (PINNED)
Long-running workflows needing updates Worker Versioning (AUTO_UPGRADE) + Patching
Quick fix, can wait for completion Wait for workflows to complete

Best Practices

  1. Check for open executions before removing old code
  2. Use descriptive patch IDs (e.g., "add-fraud-check" not "patch-1")
  3. Deploy incrementally: patch → deprecate → remove
  4. Test replay compatibility before deploying changes
  5. Monitor old workflow counts during migration

Finding Workflows by Version

# Find workflows with specific patch
temporal workflow list --query \
  'WorkflowType = "OrderWorkflow" AND TemporalChangeVersion = "add-fraud-check"'

# Find pre-patch workflows
temporal workflow list --query \
  'WorkflowType = "OrderWorkflow" AND TemporalChangeVersion IS NULL'

# Find workflows on specific worker version
temporal workflow list --query \
  'TemporalWorkerDeploymentVersion = "my-service:v1.0.0"'

Common Mistakes

  1. Removing old code too early - Breaks replaying workflows
  2. Not testing with replay - Catches issues before production
  3. Patching non-Command changes - Unnecessary complexity
  4. Forgetting to deprecate - Accumulates dead code