0% found this document useful (0 votes)
61 views40 pages

Workflows - Temporal Documentation

Uploaded by

Alias D
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views40 pages

Workflows - Temporal Documentation

Uploaded by

Alias D
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 40

02/08/2023, 06:52 Workflows | Temporal Documentation

Concepts Workflows
Workflows
This guide provides a comprehensive overview of Temporal Workflows.
In day-to-day conversations, the term Workflow frequently denotes either a Workflow Type ,
a Workflow Definition , or a Workflow Execution. Temporal documentation aims to be explicit
and differentiate between them.

What is a Workflow Definition?


A Workflow Definition is the code that defines the constraints of a Workflow Execution.
How to develop a Workflow Definition using the Go SDK
How to develop a Workflow Definition using the Java SDK
How to develop a Workflow Definition using the PHP SDK
How to develop a Workflow Definition using the Python SDK
How to develop a Workflow Definition using the TypeScript SDK
A Workflow Definition is often also referred to as a Workflow Function. In Temporal's
documentation, a Workflow Definition refers to the source for the instance of a Workflow
Execution, while a Workflow Function refers to the source for the instance of a Workflow
Function Execution.
A Workflow Execution effectively executes once to completion, while a Workflow Function
Execution occurs many times during the life of a Workflow Execution.
We strongly recommend that you write a Workflow Definition in a language that has a
corresponding Temporal SDK.
Deterministic constraints

A critical aspect of developing Workflow Definitions is ensuring they exhibit certain


deterministic traits – that is, making sure that the same Commands are emitted in the same
sequence, whenever a corresponding Workflow Function Execution (instance of the Function
Definition) is re-executed.

https://docs.temporal.io/workflows#workflow-execution 1/40
02/08/2023, 06:52 Workflows | Temporal Documentation

The execution semantics of a Workflow Execution include the re-execution of a Workflow


Function, which is called a Replay. The use of Workflow APIs in the function is what generates
Commands . Commands tell the Cluster which Events to create and add to the Workflow
Execution's Event History. When a Workflow Function executes, the Commands that are
emitted are compared with the existing Event History. If a corresponding Event already exists
within the Event History that maps to the generation of that Command in the same sequence,
and some specific metadata of that Command matches with some specific metadata of the
Event, then the Function Execution progresses.
For example, using an SDK's "Execute Activity" API generates the ScheduleActivityTask
Command. When this API is called upon re-execution, that Command is compared with the
Event that is in the same location within the sequence. The Event in the sequence must be an
ActivityTaskScheduled Event, where the Activity name is the same as what is in the Command.
If a generated Command doesn't match what it needs to in the existing Event History, then the
Workflow Execution returns a non-deterministic error.
The following are the two reasons why a Command might be generated out of sequence or the
wrong Command might be generated altogether:
1. Code changes are made to a Workflow Definition that is in use by a running Workflow
Execution.
2. There is intrinsic non-deterministic logic (such as inline random branching).
Code changes can cause non-deterministic behavior

The Workflow Definition can change in very limited ways once there is a Workflow Execution
depending on it. To alleviate non-deterministic issues that arise from code changes, we
recommend using Workflow Versioning.
For example, let's say we have a Workflow Definition that defines the following sequence:
1. Start and wait on a Timer/sleep.
2. Spawn and wait on an Activity Execution.
3. Complete.
We start a Worker and spawn a Workflow Execution that uses that Workflow Definition. The
Worker would emit the StartTimer Command and the Workflow Execution would become
suspended.
Before the Timer is up, we change the Workflow Definition to the following sequence:
https://docs.temporal.io/workflows#workflow-execution 2/40
02/08/2023, 06:52 Workflows | Temporal Documentation

1. Spawn and wait on an Activity Execution.


2. Start and wait on a Timer/sleep.
3. Complete.
When the Timer fires, the next Workflow Task will cause the Workflow Function to re-execute.
The first Command the Worker sees would be ScheduleActivityTask Command, which wouldn't
match up to the expected TimerStarted Event.
The Workflow Execution would fail and return a non-deterministic error.
The following are examples of minor changes that would not result in non-determinism errors
when re-executing a History which already contain the Events:
Changing the duration of a Timer, with the following exceptions:
In Java, Python, and Go, changing a Timer’s duration from or to 0 is a non-
deterministic behavior.
In .NET, changing a Timer’s duration from or to -1 (which means "infinite") is a non-
deterministic behavior.
Changing the arguments to:
The Activity Options in a call to spawn an Activity Execution (local or nonlocal).
The Child Workflow Options in a call to spawn a Child Workflow Execution.
Call to Signal an External Workflow Execution.
Adding a Signal Handler for a Signal Type that has not been sent to this Workflow
Execution.
Intrinsic non-deterministic logic

Intrinsic non-determinism is when a Workflow Function Execution might emit a different


sequence of Commands on re-execution, regardless of whether all the input parameters are
the same.
For example, a Workflow Definition can not have inline logic that branches (emits a different
Command sequence) based off a local time setting or a random number. In the representative
pseudocode below, the local_clock() function returns the local time, rather than Temporal-
defined time:
fn your_workflow() {
if local_clock().is_before("12pm") {
await workflow.sleep(duration_until("12pm"))
} else {

https://docs.temporal.io/workflows#workflow-execution 3/40
02/08/2023, 06:52 Workflows | Temporal Documentation

await your_afternoon_activity()
}
}

Each Temporal SDK offers APIs that enable Workflow Definitions to have logic that gets and
uses time, random numbers, and data from unreliable resources. When those APIs are used,
the results are stored as part of the Event History, which means that a re-executed Workflow
Function will issue the same sequence of Commands, even if there is branching involved.
In other words, all operations that do not purely mutate the Workflow Execution's state should
occur through a Temporal SDK API.
Workflow Versioning

The Workflow Versioning feature enables the creation of logical branching inside a Workflow
Definition based on a developer specified version identifier. This feature is useful for Workflow
Definition logic needs to be updated, but there are running Workflow Executions that currently
depends on it. It is important to note that a practical way to handle different versions of
Workflow Definitions, without using the versioning API, is to run the different versions on
separate Task Queues.
How to version Workflow Definitions in Go
How to version Workflow Definitions in Java
How to version Workflow Definitions in TypeScript
Handling unreliable Worker Processes

You do not handle Worker Process failure or restarts in a Workflow Definition.


Workflow Function Executions are completely oblivious to the Worker Process in terms of
failures or downtime. The Temporal Platform ensures that the state of a Workflow Execution is
recovered and progress resumes if there is an outage of either Worker Processes or the
Temporal Cluster itself. The only reason a Workflow Execution might fail is due to the code
throwing an error or exception, not because of underlying infrastructure outages.
What is a Workflow Type?

A Workflow Type is a name that maps to a Workflow Definition.


A single Workflow Type can be instantiated as multiple Workflow Executions.
https://docs.temporal.io/workflows#workflow-execution 4/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A Workflow Type is scoped by a Task Queue. It is acceptable to have the same Workflow
Type name map to different Workflow Definitions if they are using completely different
Workers.

Workflow Type cardinality with Workflow Definitions and Workflow Executions

What is a Workflow Execution? #​


A Temporal Workflow Execution is a durable, reliable, and scalable function execution. It is the
main unit of execution of a Temporal Application .
How to start a Workflow Execution using tctl
How to start a Workflow Execution using the Go SDK
How to start a Workflow Execution using the Java SDK
How to start a Workflow Execution using the PHP SDK
How to start a Workflow Execution using the Python SDK
How to start a Workflow Execution using the TypeScript SDK
Each Temporal Workflow Execution has exclusive access to its local state. It executes
concurrently to all other Workflow Executions, and communicates with other Workflow
Executions through Signals and the environment through Activities . While a single
Workflow Execution has limits on size and throughput, a Temporal Application can consist of
millions to billions of Workflow Executions.
Durability
https://docs.temporal.io/workflows#workflow-execution 5/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Durability is the absence of an imposed time limit.


A Workflow Execution is durable because it executes a Temporal Workflow Definition (also
called a Temporal Workflow Function), your application code, effectively once and to
completion—whether your code executes for seconds or years.
Reliability
Reliability is responsiveness in the presence of failure.
A Workflow Execution is reliable, because it is fully recoverable after a failure. The Temporal
Platform ensures the state of the Workflow Execution persists in the face of failures and
outages and resumes execution from the latest state.
Scalability
Scalability is responsiveness in the presence of load.
A single Workflow Execution is limited in size and throughput but is scalable because it can
Continue-As-New in response to load. A Temporal Application is scalable because the
Temporal Platform is capable of supporting millions to billions of Workflow Executions
executing concurrently, which is realized by the design and nature of the Temporal Cluster
and Worker Processes .
Replays

A Replay is the method by which a Workflow Execution resumes making progress. During a
Replay the Commands that are generated are checked against an existing Event History.
Replays are necessary and often happen to give the effect that Workflow Executions are
resumable, reliable, and durable.
For more information, see Deterministic constraints .
If a failure occurs, the Workflow Execution picks up where the last recorded event occurred in
the Event History.
How to use Replay APIs using the Go SDK
How to use Replay APIs using the Java SDK
How to use Replay APIs using the Python SDK
How to use Replay APIs using the TypeScript SDK

https://docs.temporal.io/workflows#workflow-execution 6/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Commands and awaitables

A Workflow Execution does two things:


1. Issue Commands .
2. Wait on an Awaitables (often called Futures).
Command generation and waiting

Commands are issued and Awaitables are provided by the use of Workflow APIs in the
Workflow Definition .
Commands are generated whenever the Workflow Function is executed. The Worker Process
supervises the Command generation and makes sure that it maps to the current Event History.
(For more information, see Deterministic constraints .) The Worker Process batches the
Commands and then suspends progress to send the Commands to the Cluster whenever the
Workflow Function reaches a place where it can no longer progress without a result from an
Awaitable.
A Workflow Execution may only ever block progress on an Awaitable that is provided through a
Temporal SDK API. Awaitables are provided when using APIs for the following:
Awaiting: Progress can block using explicit "Await" APIs.
Requesting cancellation of another Workflow Execution: Progress can block on
confirmation that the other Workflow Execution is cancelled.
Sending a Signal : Progress can block on confirmation that the Signal sent.
Spawning a Child Workflow Execution : Progress can block on confirmation that the
Child Workflow Execution started, and on the result of the Child Workflow Execution.
https://docs.temporal.io/workflows#workflow-execution 7/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Spawning an Activity Execution : Progress can block on the result of the Activity
Execution.
Starting a Timer: Progress can block until the Timer fires.
Status

A Workflow Execution can be either Open or Closed.

Workflow Execution statuses

Open
Running: The only Open status for a Workflow Execution. When the Workflow Execution is
Running, it is either actively progressing or is waiting on something.
Closed
A Closed status means that the Workflow Execution cannot make further progress because of
one of the following reasons:
Cancelled: The Workflow Execution successfully handled a cancellation request.
Completed: The Workflow Execution has completed successfully.
Continued-As-New: The Workflow Execution Continued-As-New .
Failed: The Workflow Execution returned an error and failed.
Terminated: The Workflow Execution was terminated.
Timed Out: The Workflow Execution reached a timeout limit.
https://docs.temporal.io/workflows#workflow-execution 8/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Workflow Execution Chain

A Workflow Execution Chain is a sequence of Workflow Executions that share the same
Workflow Id. Each link in the Chain is often called a Workflow Run. Each Workflow Run in the
sequence is connected by one of the following:
Continue-As-New
Retries
Temporal Cron Job
A Workflow Execution is uniquely identified by its Namespace , Workflow Id , and Run Id .
The Workflow Execution Timeout applies to a Workflow Execution Chain. The Workflow Run
Timeout applies to a single Workflow Execution (Workflow Run).
Event loop

A Workflow Execution is made up of a sequence of Events called an Event History . Events


are created by the Temporal Cluster in response to either Commands or actions requested by a
Temporal Client (such as a request to spawn a Workflow Execution).

Workflow Execution

https://docs.temporal.io/workflows#workflow-execution 9/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Time constraints

Is there a limit to how long Workflows can run?


No, there is no time constraint on how long a Workflow Execution can be Running.
However, Workflow Executions intended to run indefinitely should be written with some care.
The Temporal Cluster stores the complete Event History for the entire lifecycle of a Workflow
Execution. The Temporal Cluster logs a warning after 10Ki (10,240) Events and periodically logs
additional warnings as new Events are added. If the Event History exceeds 50Ki (51,200)
Events, the Workflow Execution is terminated.
https://docs.temporal.io/workflows#workflow-execution 10/40
02/08/2023, 06:52 Workflows | Temporal Documentation

To prevent runaway Workflow Executions, you can use the Workflow Execution Timeout, the
Workflow Run Timeout, or both. A Workflow Execution Timeout can be used to limit the
duration of Workflow Execution Chain, and a Workflow Run Timeout can be used to limit the
duration an individual Workflow Execution (Run).
You can use the Continue-As-New feature to close the current Workflow Execution and
create a new Workflow Execution in a single atomic operation. The Workflow Execution
spawned from Continue-As-New has the same Workflow Id, a new Run Id, and a fresh Event
History and is passed all the appropriate parameters. For example, it may be reasonable to use
Continue-As-New once per day for a long-running Workflow Execution that is generating a
large Event History.
Limits

Each pending Activity generates a metadata entry in the Workflow's mutable state. Too many
entries create a large mutable state, which causes unstable persistence.
To protect the system, Temporal enforces a maximum number (2,000 by default) of pending
Activities, Child Workflows, Signals, or Cancellation requests per Workflow. These limits are set
with the following dynamic configuration keys:
NumPendingActivitiesLimit

NumPendingChildExecutionsLimit

NumPendingSignalsLimit

NumPendingCancelRequestsLimit

By default, Temporal fails Workflow Task Executions that would cause the Workflow to surpass
any of these limits (by producing enough ScheduleActivityTask ,
StartChildWorkflowExecution , SignalExternalWorkflowExecution , or
RequestCancelExternalWorkflowExecution Commands to exceed a limit).

What is a Command?

A Command is a requested action issued by a Worker to the Temporal Cluster after a


Workflow Task Execution completes.
The action that the Cluster takes is recorded in the Workflow Execution's Event History as an
Event . The Workflow Execution can await on some of the Events that come as a result from
some of the Commands.
https://docs.temporal.io/workflows#workflow-execution 11/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Commands are generated by the use of Workflow APIs in your code. During a Workflow Task
Execution there may be several Commands that are generated. The Commands are batched
and sent to the Cluster as part of the Workflow Task Execution completion request, after the
Workflow Task has progressed as far as it can with the Workflow function. There will always be
WorkflowTaskStarted and WorkflowTaskCompleted Events in the Event History when there is a
Workflow Task Execution completion request.

Commands are generated by the use of Workflow APIs in your code

https://docs.temporal.io/workflows#workflow-execution 12/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Commands are described in the Command reference and are defined in the Temporal gRPC
API.
What is an Event?

Events are created by the Temporal Cluster in response to external occurrences and
Commands generated by a Workflow Execution. Each Event corresponds to an enum that is
defined in the Server API.
All Events are recorded in the Event History .
A list of all possible Events that could appear in a Workflow Execution Event History is provided
in the Event reference .
Activity Events

Seven Activity-related Events are added to Event History at various points in an Activity
Execution:
After a Workflow Task Execution reaches a line of code that starts/executes an Activity,
the Worker sends the Activity Type and arguments to the Temporal Cluster, and the
Cluster adds an ActivityTaskScheduled Event to Event History.
When ActivityTaskScheduled is added to History, the Cluster adds a corresponding
Activity Task to the Task Queue.
A Worker polling that Task Queue picks up the Activity Task and runs the Activity function
or method.
If the Activity function returns, the Worker reports completion to the Cluster, and the
Cluster adds ActivityTaskStarted and ActivityTaskCompleted to Event History.
If the Activity function throws a non-retryable Failure, the Cluster adds ActivityTaskStarted
and ActivityTaskFailed to Event History.
If the Activity function throws an error or retryable Failure, the Cluster schedules an
Activity Task retry to be added to the Task Queue (unless you’ve reached the Maximum
Attempts value of the Retry Policy, in which case the Cluster adds ActivityTaskStarted
and ActivityTaskFailed to Event History).
If the Activity’s Start-to-Close Timeout passes before the Activity function returns or
throws, the Cluster schedules a retry.
If the Activity’s Schedule-to-Close Timeout passes before Activity Execution is complete,
or if Schedule-to-Start Timeout passes before a Worker gets the Activity Task, the Cluster
writes ActivityTaskTimedOut to Event History.
https://docs.temporal.io/workflows#workflow-execution 13/40
02/08/2023, 06:52 Workflows | Temporal Documentation

If the Activity is canceled, the Cluster writes ActivityTaskCancelRequested to Event


History, and if the Activity accepts cancellation, the Cluster writes ActivityTaskCanceled .
NOTE
While the Activity is running and retrying, ActivityTaskScheduled is the only Activity-
related Event in History: ActivityTaskStarted is written along with a terminal Event like
ActivityTaskCompleted or ActivityTaskFailed .

What is an Event History?

An append-only log of Events for your application.


Event History is durably persisted by the Temporal service, enabling seamless recovery of
your application state from crashes or failures.
It also serves as an audit log for debugging.
Event History limits
The Temporal Cluster stores the complete Event History for the entire lifecycle of a Workflow
Execution.
The Temporal Cluster logs a warning after 10Ki (10,240) Events and periodically logs additional
warnings as new Events are added. If the Event History exceeds 50Ki (51,200) Events, the
Workflow Execution is terminated.
What is Continue-As-New?

Continue-As-New is a mechanism by which the latest relevant state is passed to a new


Workflow Execution, with a fresh Event History.
As a precautionary measure, the Temporal Platform limits the total Event History to 51,200
Events or 50 MB, and will warn you after 10,240 Events or 10 MB. To prevent a Workflow
Execution Event History from exceeding this limit and failing, use Continue-As-New to start a
new Workflow Execution with a fresh Event History.
All values passed to a Workflow Execution through parameters or returned through a result
value are recorded into the Event History. A Temporal Cluster stores the full Event History of a
Workflow Execution for the duration of a Namespace's retention period. A Workflow Execution
that periodically executes many Activities has the potential of hitting the size limit.
https://docs.temporal.io/workflows#workflow-execution 14/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A very large Event History can adversely affect the performance of a Workflow Execution. For
example, in the case of a Workflow Worker failure, the full Event History must be pulled from
the Temporal Cluster and given to another Worker via a Workflow Task. If the Event history is
very large, it may take some time to load it.
The Continue-As-New feature enables developers to complete the current Workflow Execution
and start a new one atomically.
The new Workflow Execution has the same Workflow Id, but a different Run Id, and has its own
Event History.
In the case of Temporal Cron Jobs , Continue-As-New is actually used internally for the same
effect.
How to Continue-As-New using the Go SDK
How to Continue-As-New using the Java SDK
How to Continue-As-New using the PHP SDK
How to Continue-As-New using the Python SDK
How to Continue-As-New using the TypeScript SDK
What is a Reset?

A Reset terminates a Workflow Execution, removes the progress in the Event History up to the
reset point, and then creates a new Workflow Execution with the same Workflow Type and Id to
continue.
What is a Run Id?

A Run Id is a globally unique, platform-level identifier for a Workflow Execution.


Temporal guarantees that only one Workflow Execution with a given Workflow Id can be in an
Open state at any given time. But when a Workflow Execution reaches a Closed state, it is
possible to have another Workflow Execution in an Open state with the same Workflow Id. For
example, a Temporal Cron Job is a chain of Workflow Executions that all have the same
Workflow Id. Each Workflow Execution within the chain is considered a Run.
A Run Id uniquely identifies a Workflow Execution even if it shares a Workflow Id with other
Workflow Executions.
CAUTION
https://docs.temporal.io/workflows#workflow-execution 15/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Don't rely on storing the current Run Id or using it for any logical choices. A Workflow
Retry changes the Run Id. Because the current Run Id is mutable, relying on it might
produce non-determinism issues.
Learn more
For more information, see the following links.
message.proto

Non-determinism issues for Run Ids


What is a Workflow Id?

A Workflow Id is a customizable, application-level identifier for a Workflow Execution that is


unique to an Open Workflow Execution within a Namespace.
How to set a Workflow Id
A Workflow Id is meant to be a business-process identifier such as customer identifier or order
identifier.
A Workflow Id Reuse Policy can be used to manage whether a Workflow Id can be re-used.
The Temporal Platform guarantees uniqueness of the Workflow Id within a Namespace
based on the Workflow Id Reuse Policy.
A Workflow Execution can be uniquely identified across all Namespaces by its Namespace ,
Workflow Id, and Run Id .
What is a Workflow Id Reuse Policy?

A Workflow Id Reuse Policy determines whether a Workflow Execution is allowed to spawn with
a particular Workflow Id, if that Workflow Id has been used with a previous, and now Closed,
Workflow Execution.
It is not possible for a new Workflow Execution to spawn with the same Workflow Id as another
Open Workflow Execution, regardless of the Workflow Id Reuse Policy. In some cases, an
attempt to spawn a Workflow Execution with a Workflow Id that is the same as the Id of a
currently Open Workflow Execution results in a Workflow execution already started
error.
NOTE
https://docs.temporal.io/workflows#workflow-execution 16/40
02/08/2023, 06:52 Workflows | Temporal Documentation

The default StartWorkflowOptions behavior in the Go SDK is to not return an error when a
new Workflow Execution is attempted with the same Workflow Id as an open Workflow
Execution. Instead, it returns a WorkflowRun instance representing the current or last run
of the open Workflow Execution.
To return the Workflow execution already started error, set
WorkflowExecutionErrorWhenAlreadyStarted to true .

The Workflow Id Reuse Policy can have one of the following values:
Allow Duplicate: The Workflow Execution is allowed to exist regardless of the Closed
status of a previous Workflow Execution with the same Workflow Id. This is the default
policy, if one is not specified. Use this when it is OK to have a Workflow Execution with
the same Workflow Id as a previous, but now Closed, Workflow Execution.
Allow Duplicate Failed Only: The Workflow Execution is allowed to exist only if a previous
Workflow Execution with the same Workflow Id does not have a Completed status. Use
this policy when there is a need to re-execute a Failed, Timed Out, Terminated or
Cancelled Workflow Execution and guarantee that the Completed Workflow Execution will
not be re-executed.
Reject Duplicate: The Workflow Execution cannot exist if a previous Workflow Execution
has the same Workflow Id, regardless of the Closed status. Use this when there can only
be one Workflow Execution per Workflow Id within a Namespace for the given retention
period.
Terminate if Running: Specifies that if a Workflow Execution with the same Workflow Id is
already running, it should be terminated and a new Workflow Execution with the same
Workflow Id should be started. This policy allows for only one Workflow Execution with a
specific Workflow Id to be running at any given time.
A Workflow Id Reuse Policy applies only if a Closed Workflow Execution with the same
Workflow Id exists within the Retention Period of the associated Namespace. For example, if
the Namespace's retention period is 30 days, a Workflow Id Reuse Policy can only compare the
Workflow Id of the spawning Workflow Execution against the Closed Workflow Executions for
the last 30 days.
If there is an attempt to spawn a Workflow Execution with a Workflow Id Reuse Policy that
won't allow it the Server will prevent the Workflow Execution from spawning.
What is a Workflow Execution Timeout?

https://docs.temporal.io/workflows#workflow-execution 17/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A Workflow Execution Timeout is the maximum time that a Workflow Execution can be
executing (have an Open status) including retries and any usage of Continue As New.
How to set a Workflow Execution Timeout using the Go SDK
How to set a Workflow Execution Timeout using the Java SDK
How to set a Workflow Execution Timeout using the PHP SDK
How to set a Workflow Execution Timeout using the Python SDK
How to set a Workflow Execution Timeout using the TypeScript SDK

Workflow Execution Timeout period

https://docs.temporal.io/workflows#workflow-execution 18/40
02/08/2023, 06:52 Workflows | Temporal Documentation

The default value is ∞ (infinite). If this timeout is reached, the Workflow Execution changes
to a Timed Out status. This timeout is different from the Workflow Run Timeout . This timeout
is most commonly used for stopping the execution of a Temporal Cron Job after a certain
amount of time has passed.
What is a Workflow Run Timeout?

A Workflow Run Timeout is the maximum amount of time that a single Workflow Run is
restricted to.
How to set a Workflow Run Timeout using the Go SDK
How to set a Workflow Run Timeout using the Java SDK
How to set a Workflow Run Timeout using the PHP SDK
How to set a Workflow Run Timeout using the Python SDK
How to set a Workflow Run Timeout using the TypeScript SDK
Workflow Run Timeout period

https://docs.temporal.io/workflows#workflow-execution 19/40
02/08/2023, 06:52 Workflows | Temporal Documentation

The default is set to the same value as the Workflow Execution Timeout . This timeout is
most commonly used to limit the execution time of a single Temporal Cron Job Execution .
If the Workflow Run Timeout is reached, the Workflow Execution is Terminated.
What is a Workflow Task Timeout?

A Workflow Task Timeout is the maximum amount of time allowed for a Worker to execute a
Workflow Task after the Worker has pulled that Workflow Task from the Task Queue .
How to set a Workflow Task Timeout using the Go SDK
How to set a Workflow Task Timeout using the Java SDK
How to set a Workflow Task Timeout using the PHP SDK
How to set a Workflow Task Timeout using the Python SDK
How to set a Workflow Task Timeout using the TypeScript SDK
https://docs.temporal.io/workflows#workflow-execution 20/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Workflow Task Timeout period

The default value is 10 seconds. This timeout is primarily available to recognize whether a
Worker has gone down so that the Workflow Execution can be recovered on a different Worker.
The main reason for increasing the default value would be to accommodate a Workflow
Execution that has a very long Workflow Execution History that could take longer than 10
seconds for the Worker to load.
What is a Memo?

A Memo is a non-indexed set of Workflow Execution metadata that developers supply at start
time or in Workflow code and that is returned when you describe or list Workflow Executions.
The primary purpose of using a Memo is to enhance the organization and management of
Workflow Executions. Add your own metadata, such as notes or descriptions, to a Workflow
https://docs.temporal.io/workflows#workflow-execution 21/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Execution, which lets you annotate and categorize Workflow Executions based on developer-
defined criteria. This feature is particularly useful when dealing with numerous Workflow
Executions because it facilitates the addition of context, reminders, or any other relevant
information that aids in understanding or tracking the Workflow Execution.

What is a Signal?
A Signal is an asynchronous request to a Workflow Execution.
How to send a Signal using tctl
How to develop, send, and handle Signals in Go
How to develop, send, and handle Signals in Java
How to develop, send, and handle Signals in PHP
How to develop, send, and handle Signals in Python
How to develop, send, and handle Signals in TypeScript
A Signal delivers data to a running Workflow Execution. It cannot return data to the caller; to do
so, use a Query instead. The Workflow code that handles a Signal can mutate Workflow state.
A Signal can be sent from a Temporal Client or a Workflow. When a Signal is sent, it is received
by the Cluster and recorded as an Event to the Workflow Execution Event History. A successful
response from the Cluster means that the Signal has been persisted and will be delivered at
least once to the Workflow Execution.1 The next scheduled Workflow Task will contain the
Signal Event.
A Signal must include a destination (Namespace and Workflow Id) and name. It can include a
list of arguments.
Signal handlers are Workflow functions that listen for Signals by the Signal name. Signals are
delivered in the order they are received by the Cluster. If multiple deliveries of a Signal would
be a problem for your Workflow, add idempotency logic to your Signal handler that checks for
duplicates.

What is a Query?
A Query is a synchronous operation that is used to get the state of a Workflow Execution. The
state of a running Workflow Execution is constantly changing. You can use Queries to expose
the internal Workflow Execution state to the external world. Queries are available for running or
completed Workflows Executions only if the Worker is up and listening on the Task Queue.
https://docs.temporal.io/workflows#workflow-execution 22/40
02/08/2023, 06:52 Workflows | Temporal Documentation

How to send a Query using tctl


How to send and handle Queries with the Go SDK
How to send and handle Queries with the Java SDK
How to send and handle Queries with the PHP SDK
How to send and handle Queries with the Python SDK
How to send and handle Queries with the TypeScript SDK
Queries are sent from a Temporal Client to a Workflow Execution. The API call is synchronous.
The Query is identified at both ends by a Query name. The Workflow must have a Query
handler that is developed to handle that Query and provide data that represents the state of
the Workflow Execution.
Queries are strongly consistent and are guaranteed to return the most recent state. This
means that the data reflects the state of all confirmed Events that came in before the Query
was sent. An Event is considered confirmed if the call creating the Event returned success.
Events that are created while the Query is outstanding may or may not be reflected in the
Workflow state the Query result is based on.
A Query can carry arguments to specify the data it is requesting. And each Workflow can
expose data to multiple types of Queries.
A Query must never mutate the state of the Workflow Execution—that is, Queries are read-only
and cannot contain any blocking code. This means, for example, that Query handling logic
cannot schedule Activity Executions.
Sending Queries to completed Workflow Executions is supported, though Query reject
conditions can be configured per Query.
Stack Trace Query

In many SDKs, the Temporal Client exposes a predefined __stack_trace Query that returns
the stack trace of all the threads owned by that Workflow Execution. This is a great way to
troubleshoot a Workflow Execution in production. For example, if a Workflow Execution has
been stuck at a state for longer than an expected period of time, you can send a
__stack_trace Query to return the current call stack. The __stack_trace Query name
does not require special handling in your Workflow code.
NOTE
Stack Trace Queries are available only for running Workflow Executions.
https://docs.temporal.io/workflows#workflow-execution 23/40
02/08/2023, 06:52 Workflows | Temporal Documentation

What is an Update?

SUPPORT, STABILITY, AND DEPENDENCY INFO


Released in Temporal Server version 1.21
Available in the Go SDK since v1.23.0
Available in the Java SDK since v1.20.0
An Update is a request to and a response from a Temporal Client to a Workflow Execution .
How to develop, send, and handle Updates in Go
The Workflow must have a function to handle the Update. Unlike a Signal handler, the
Update handler function can mutate the state of the Workflow while also returning a value to
the caller. The Update handler listens for Updates by the Update's name.
When there is the potential for multiple Updates to cause a duplication problem, Temporal
recommends adding idempotency logic to your Update handler that checks for duplicates.
An Update has four phases.
1. Admission. The Temporal Cluster first validates Update submissions against the
configured resource usage limits. For example, limits apply to concurrent requests and
requests per second. See the Temporal Platform limits sheet for more details. When this
phase is complete, the Platform changes the status of the Update to Admitted. At this
stage, the Platform hasn't yet persisted the Update to the Workflow Execution's Event
History or sent it to a Worker.
2. Validation. An optional developer provided function that performs request validation. This
validation code, similar to a Query handler, can observe but not change the Workflow
state. This means that the validation of an Update request may depend on the Workflow
state at runtime. If an Update request doesn't pass validation at this stage, the system
rejects the request and doesn't record anything in the Workflow Event History to indicate
that the Update ever happened. The Update processing doesn't proceed to later phases.
When the Update completes the validation stage, the Platform changes its state to
Accepted. A WorkflowExecutionUpdateAcceptedEvent Event in the Workflow Execution
Event History denotes the acceptance of an Update.
3. Execution. Accepted Update requests move to the execution phase. In this phase, the
Worker delivers the request to the Update handler. Like every bit of code in a Workflow,
Update handlers must be deterministic .
https://docs.temporal.io/workflows#workflow-execution 24/40
02/08/2023, 06:52 Workflows | Temporal Documentation

4. Completion. The Update handler can return a result or a language-appropriate


error/exception to indicate its completion. The Platform sends the Update outcome back
to the original invoking entity as an Update response. A
WorkflowExecutionUpdateCompletedEvent Event in the Workflow Execution Event
History denotes the completion of an Update.

What is a Side Effect?


A Side Effect is a way to execute a short, non-deterministic code snippet, such as generating a
UUID, that executes the provided function once and records its result into the Workflow
Execution Event History.
A Side Effect does not re-execute upon replay, but instead returns the recorded result.
Do not ever have a Side Effect that could fail, because failure could result in the Side Effect
function executing more than once. If there is any chance that the code provided to the Side
Effect could fail, use an Activity.

What is a Child Workflow Execution?


A Child Workflow Execution is a Workflow Execution that is spawned from within another
Workflow.
How to start a Child Workflow Execution using the Go SDK
How to start a Child Workflow Execution using the Java SDK
How to start a Child Workflow Execution using the PHP SDK
How to start a Child Workflow Execution using the Python SDK
How to start a Child Workflow Execution using the TypeScript SDK
A Workflow Execution can be both a Parent and a Child Workflow Execution because any
Workflow can spawn another Workflow.
Parent and Child Workflow Execution entity relationship

https://docs.temporal.io/workflows#workflow-execution 25/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A Parent Workflow Execution must await on the Child Workflow Execution to spawn. The Parent
can optionally await on the result of the Child Workflow Execution. Consider the Child's Parent
Close Policy if the Parent does not await on the result of the Child, which includes any use of
Continue-As-New by the Parent.
When a Parent Workflow Execution reaches a Closed status, the Cluster propagates
Cancellation Requests or Terminations to Child Workflow Executions depending on the Child's
Parent Close Policy.
If a Child Workflow Execution uses Continue-As-New, from the Parent Workflow Execution's
perspective the entire chain of Runs is treated as a single execution.

Parent and Child Workflow Execution entity relationship with Continue As New

https://docs.temporal.io/workflows#workflow-execution 26/40
02/08/2023, 06:52 Workflows | Temporal Documentation

When to use Child Workflows

Consider Workflow Execution Event History size limits.


An individual Workflow Execution has an Event History size limit, which imposes a couple of
considerations for using Child Workflows.
On one hand, because Child Workflow Executions have their own Event Histories, they are
often used to partition large workloads into smaller chunks. For example, a single Workflow
Execution does not have enough space in its Event History to spawn 100,000 Activity
Executions . But a Parent Workflow Execution can spawn 1,000 Child Workflow Executions
that each spawn 1,000 Activity Executions to achieve a total of 1,000,000 Activity Executions.
However, because a Parent Workflow Execution Event History contains Events that
correspond to the status of the Child Workflow Execution, a single Parent should not spawn
more than 1,000 Child Workflow Executions.
In general, however, Child Workflow Executions result in more overall Events recorded in Event
Histories than Activities. Because each entry in an Event History is a cost in terms of compute
resources, this could become a factor in very large workloads. Therefore, we recommend
starting with a single Workflow implementation that uses Activities until there is a clear need
for Child Workflows.
Consider each Child Workflow Execution as a separate service.

https://docs.temporal.io/workflows#workflow-execution 27/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Because a Child Workflow Execution can be processed by a completely separate set of


Workers than the Parent Workflow Execution, it can act as an entirely separate service.
However, this also means that a Parent Workflow Execution and a Child Workflow Execution do
not share any local state. As all Workflow Executions, they can communicate only via
asynchronous Signals .
Consider that a single Child Workflow Execution can represent a single resource.
As all Workflow Executions, a Child Workflow Execution can create a one to one mapping with a
resource. For example, a Workflow that manages host upgrades could spawn a Child Workflow
Execution per host.
When to use a Child Workflow versus an Activity

Child Workflow Executions and Activity Executions are both started from Workflows, so you
might feel confused about when to use which. Here are some important differences:
A Child Workflow has access to all Workflow APIs but is subject to the same deterministic
constraints as other Workflows. An Activity has the inverse pros and cons—no access to
Workflow APIs but no Workflow constraints.
A Child Workflow Execution can continue on if its Parent is canceled with a Parent Close
Policy of ABANDON . An Activity Execution is always canceled when its Workflow
Execution is canceled. (It can react to a cancellation Signal for cleanup.) The decision is
roughly analogous to spawning a child process in a terminal to do work versus doing work
in the same process.
Temporal tracks all state changes within a Child Workflow Execution in Event History. Only
the input, output, and retry attempts of an Activity Execution is tracked.
A Workflow models composite operations that consist of multiple Activities or other Child
Workflows. An Activity usually models a single operation on the external world.
Our advice: When in doubt, use an Activity.
What is a Parent Close Policy?

A Parent Close Policy determines what happens to a Child Workflow Execution if its Parent
changes to a Closed status (Completed, Failed, or Timed out).
How to set a Parent Close Policy using the Go SDK
How to set a Parent Close Policy using the Java SDK
https://docs.temporal.io/workflows#workflow-execution 28/40
02/08/2023, 06:52 Workflows | Temporal Documentation

How to set a Parent Close Policy using the PHP SDK


How to set a Parent Close Policy using the Python SDK
How to set a Parent Close Policy using the TypeScript SDK
There are three possible values:
Abandon: the Child Workflow Execution is not affected.
Request Cancel: a Cancellation request is sent to the Child Workflow Execution.
Terminate (default): the Child Workflow Execution is forcefully Terminated.
ParentClosePolicy proto definition.

Each Child Workflow Execution may have its own Parent Close Policy. This policy applies only
to Child Workflow Executions and has no effect otherwise.

Parent Close Policy entity relationship

You can set policies per child, which means you can opt out of propagating terminates /
cancels on a per-child basis. This is useful for starting Child Workflows asynchronously (see
relevant issue here or the corresponding SDK docs).

What is a Temporal Cron Job?

https://docs.temporal.io/workflows#workflow-execution 29/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A Temporal Cron Job is the series of Workflow Executions that occur when a Cron Schedule is
provided in the call to spawn a Workflow Execution.
How to set a Cron Schedule using the Go SDK
How to set a Cron Schedule using the Java SDK
How to set a Cron Schedule using the PHP SDK
How to set a Cron Schedule using the Python SDK
How to set a Cron Schedule using the TypeScript SDK

Temporal Cron Job timeline

A Temporal Cron Job is similar to a classic unix cron job. Just as a unix cron job accepts a
command and a schedule on which to execute that command, a Cron Schedule can be
provided with the call to spawn a Workflow Execution. If a Cron Schedule is provided, the
Temporal Server will spawn an execution for the associated Workflow Type per the schedule.
Each Workflow Execution within the series is considered a Run.
Each Run receives the same input parameters as the initial Run.
Each Run inherits the same Workflow Options as the initial Run.
https://docs.temporal.io/workflows#workflow-execution 30/40
02/08/2023, 06:52 Workflows | Temporal Documentation

The Temporal Server spawns the first Workflow Execution in the chain of Runs immediately.
However, it calculates and applies a backoff ( firstWorkflowTaskBackoff ) so that the first
Workflow Task of the Workflow Execution does not get placed into a Task Queue until the
scheduled time. After each Run Completes, Fails, or reaches the Workflow Run Timeout , the
same thing happens: the next run will be created immediately with a new
firstWorkflowTaskBackoff that is calculated based on the current Server time and the
defined Cron Schedule.
The Temporal Server spawns the next Run only after the current Run has Completed, Failed, or
has reached the Workflow Run Timeout. This means that, if a Retry Policy has also been
provided, and a Run Fails or reaches the Workflow Run Timeout, the Run will first be retried per
the Retry Policy until the Run Completes or the Retry Policy has been exhausted. If the next
Run, per the Cron Schedule, is due to spawn while the current Run is still Open (including
retries), the Server automatically starts the new Run after the current Run completes
successfully. The start time for this new Run and the Cron definitions are used to calculate the
firstWorkflowTaskBackoff that is applied to the new Run.

A Workflow Execution Timeout is used to limit how long a Workflow can be executing (have
an Open status), including retries and any usage of Continue As New. The Cron Schedule runs
until the Workflow Execution Timeout is reached or you terminate the Workflow.

Temporal Cron Job Run Failure with a Retry Policy

https://docs.temporal.io/workflows#workflow-execution 31/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Cron Schedules

Cron Schedules are interpreted in UTC time by default.


The Cron Schedule is provided as a string and must follow one of two specifications:
Classic specification
This is what the "classic" specification looks like:
┌───────────── minute (0 - 59)
│ ┌───────────── hour (0 - 23)
│ │ ┌───────────── day of the month (1 - 31)
│ │ │ ┌───────────── month (1 - 12)
│ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday)
│ │ │ │ │
│ │ │ │ │
* * * * *

For example, 15 8 * * * causes a Workflow Execution to spawn daily at 8:15 AM UTC. Use
the crontab guru site to test your cron expressions.
https://docs.temporal.io/workflows#workflow-execution 32/40
02/08/2023, 06:52 Workflows | Temporal Documentation

robfig predefined schedules and intervals

You can also pass any of the predefined schedules or intervals described in the robfig/cron
documentation.
| Schedules | Description |
Equivalent To |
| ---------------------- | ------------------------------------------ |
------------- |
| @yearly (or @annually) | Run once a year, midnight, Jan. 1st |
0 0 1 1 * |
| @monthly | Run once a month, midnight, first of month |
0 0 1 * * |
| @weekly | Run once a week, midnight between Sat/Sun |
0 0 * * 0 |
| @daily (or @midnight) | Run once a day, midnight |
0 0 * * * |
| @hourly | Run once an hour, beginning of hour |
0 * * * * |

For example, "@weekly" causes a Workflow Execution to spawn once a week at midnight
between Saturday and Sunday.
Intervals just take a string that can be accepted by time.ParseDuration.
@every <duration>

Time zones

This feature only applies in Temporal 1.15 and up


You can change the time zone that a Cron Schedule is interpreted in by prefixing the
specification with CRON_TZ=America/New_York (or your desired time zone from tz).
CRON_TZ=America/New_York 15 8 * * * therefore spawns a Workflow Execution every
day at 8:15 AM New York time, subject to caveats listed below.
Consider that using time zones in production introduces a surprising amount of complexity and
failure modes! If at all possible, we recommend specifying Cron Schedules in UTC (the
default).
If you need to use time zones, here are a few edge cases to keep in mind:
https://docs.temporal.io/workflows#workflow-execution 33/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Beware Daylight Saving Time: If a Temporal Cron Job is scheduled around the time when
daylight saving time (DST) begins or ends (for example, 30 2 * * * ), it might run zero,
one, or two times in a day! The Cron library that we use does not do any special handling
of DST transitions. Avoid schedules that include times that fall within DST transition
periods.
For example, in the US, DST begins at 2 AM. When you "fall back," the clock goes
1:59 … 1:00 … 1:01 … 1:59 … 2:00 … 2:01 AM and any Cron jobs that fall in
that 1 AM hour are fired again. The inverse happens when clocks "spring forward" for
DST, and Cron jobs that fall in the 2 AM hour are skipped.
In other time zones like Chile and Iran, DST "spring forward" is at midnight. 11:59 PM
is followed by 1 AM, which means 00:00:00 never happens.
Self Hosting note: If you manage your own Temporal Cluster, you are responsible for
ensuring that it has access to current tzdata files. The official Docker images are built
with tzdata installed (provided by Alpine Linux), but ultimately you should be aware of how
tzdata is deployed and updated in your infrastructure.
Updating Temporal: If you use the official Docker images, note that an upgrade of the
Temporal Cluster may include an update to the tzdata files, which may change the
meaning of your Cron Schedule. You should be aware of upcoming changes to the
definitions of the time zones you use, particularly around daylight saving time start/end
dates.
Absolute Time Fixed at Start: The absolute start time of the next Run is computed and
stored in the database when the previous Run completes, and is not recomputed. This
means that if you have a Cron Schedule that runs very infrequently, and the definition of
the time zone changes between one Run and the next, the Run might happen at the wrong
time. For example, CRON_TZ=America/Los_Angeles 0 12 11 11 * means "noon in Los
Angeles on November 11" (normally not in DST). If at some point the government makes
any changes (for example, move the end of DST one week later, or stay on permanent DST
year-round), the meaning of that specification changes. In that first year, the Run happens
at the wrong time, because it was computed using the older definition.
How to stop a Temporal Cron Job

A Temporal Cron Job does not stop spawning Runs until it has been Terminated or until the
Workflow Execution Timeout is reached.
A Cancellation Request affects only the current Run.
Use the Workflow Id in any requests to Cancel or Terminate.
https://docs.temporal.io/workflows#workflow-execution 34/40
02/08/2023, 06:52 Workflows | Temporal Documentation

What is a Schedule?

SUPPORT, STABILITY, AND DEPENDENCY INFO


Introduced in Temporal Server version 1.17.0
Available in Temporal CLI (and tctl v1.17)
Available in Temporal Cloud in Public Preview
Available in Go SDK version 1.22.0
Available in Java SDK version 1.20.0
Available in Python SDK version 1.1.0
Available in TypeScript SDK version 1.5.0
Available in .NET SDK version 0.1.0
Available in gRPC API
A Schedule contains instructions for starting a Workflow Execution at specific times. Schedules
provide a more flexible and user-friendly approach than Temporal Cron Jobs .
How to enable Schedules
How to operate Schedules using tctl
A Schedule has an identity and is independent of a Workflow Execution. This differs from a
Temporal Cron Job, which relies on a cron schedule as a property of the Workflow Execution.
Action

The Action of a Schedule is where the Workflow Execution properties are established, such as
Workflow Type, Task Queue, parameters, and timeouts.
Workflow Executions started by a Schedule have the following additional properties:
The Action's timestamp is appended to the Workflow Id.
The TemporalScheduledStartTime Search Attribute is added to the Workflow
Execution. The value is the Action's timestamp.
The TemporalScheduledById Search Attribute is added to the Workflow Execution. The
value is the Schedule Id.
Spec

The Schedule Spec describes when the Action is taken. There are two kinds of Schedule Spec:
https://docs.temporal.io/workflows#workflow-execution 35/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A simple interval, like "every 30 minutes" (aligned to start at the Unix epoch, and
optionally including a phase offset).
A calendar-based expression, similar to the "cron expressions" supported by lots of
software, including the older Temporal Cron feature.
These two kinds have multiple representations, depending on the interface or SDK you're
using, but they all support the same features.
In tctl, for example, an interval is specified as a string like 45m to mean every 45 minutes, or
6h/5h to mean every 6 hours but at the start of the fifth hour within each period.

In tctl, a calendar expression can be specified as either a traditional cron string with five (or six
or seven) positional fields, or as JSON with named fields:
{
"year": "2022",
"month": "Jan,Apr,Jul,Oct",
"dayOfMonth": "1,15",
"hour": "11-14"
}

The following calendar JSON fields are available:


year

month

dayOfMonth

dayOfWeek

hour

minute

second

comment

Each field can contain a comma-separated list of ranges (or the * wildcard), and each range
can include a slash followed by a skip value. The hour , minute , and second fields default to
0 while the others default to * , so you can describe many useful specs with only a few fields.

For month , names of months may be used instead of integers (case-insensitive, abbreviations
permitted). For dayOfWeek , day-of-week names may be used.

https://docs.temporal.io/workflows#workflow-execution 36/40
02/08/2023, 06:52 Workflows | Temporal Documentation

The comment field is optional and can be used to include a free-form description of the intent
of the calendar spec, useful for complicated specs.
No matter which form you supply, calendar and interval specs are converted to canonical
representations. What you see when you "describe" or "list" a Schedule might not look exactly
like what you entered, but it has the same meaning.
Other Spec features:
Multiple intervals/calendar expressions: A Spec can have combinations of multiple intervals
and/or calendar expressions to define a specific Schedule.
Time bounds: Provide an absolute start or end time (or both) with a Spec to ensure that no
actions are taken before the start time or after the end time.
Exclusions: A Spec can contain exclusions in the form of zero or more calendar expressions.
This can be used to express scheduling like "each Monday at noon except for holidays. You'll
have to provide your own set of exclusions and include it in each schedule; there are no pre-
defined sets. (This feature isn't currently exposed in tctl or the Temporal Web UI.)
Jitter: If given, a random offset between zero and the maximum jitter is added to each Action
time (but bounded by the time until the next scheduled Action).
Time zones: By default, calendar-based expressions are interpreted in UTC. Temporal
recommends using UTC to avoid various surprising properties of time zones. If you don't want
to use UTC, you can provide the name of a time zone. The time zone definition is loaded on the
Temporal Server Worker Service from either disk or the fallback embedded in the binary.
For more operational control, embed the contents of the time zone database file in the
Schedule Spec itself. (Note: this isn't currently exposed in tctl or the web UI.)
Pause

A Schedule can be Paused. When a Schedule is Paused, the Spec has no effect. However, you
can still force manual actions by using the tctl schedule trigger command.
To assist communication among developers and operators, a “notes” field can be updated on
pause or resume to store an explanation for the current state.
Backfill

https://docs.temporal.io/workflows#workflow-execution 37/40
02/08/2023, 06:52 Workflows | Temporal Documentation

A Schedule can be Backfilled. When a Schedule is Backfilled, all the Actions that would have
been taken over a specified time period are taken now (in parallel if the AllowAll Overlap
Policy is used; sequentially if BufferAll is used). You might use this to fill in runs from a time
period when the Schedule was paused due to an external condition that's now resolved, or a
period before the Schedule was created.
Limit number of Actions

A Schedule can be limited to a certain number of scheduled Actions (that is, not trigger
immediately). After that it will act as if it were paused.
Policies

A Schedule supports a set of Policies that enable customizing behavior.


Overlap Policy

The Overlap Policy controls what happens when it is time to start a Workflow Execution but a
previously started Workflow Execution is still running. The following options are available:
Skip : Default. Nothing happens; the Workflow Execution is not started.

BufferOne : Starts the Workflow Execution as soon as the current one completes. The
buffer is limited to one. If another Workflow Execution is supposed to start, but one is
already in the buffer, only the one in the buffer eventually starts.
BufferAll : Allows an unlimited number of Workflows to buffer. They are started
sequentially.
CancelOther : Cancels the running Workflow Execution, and then starts the new one after
the old one completes cancellation.
TerminateOther : Terminates the running Workflow Execution and starts the new one
immediately.
AllowAll Starts any number of concurrent Workflow Executions. With this policy (and
only this policy), more than one Workflow Execution, started by the Schedule, can run
simultaneously.
Catchup Window

The Temporal Cluster might be down or unavailable at the time when a Schedule should take
an Action. When it comes back up, the Catchup Window controls which missed Actions should
be taken at that point. The default is one minute, which means that the Schedule attempts to
https://docs.temporal.io/workflows#workflow-execution 38/40
02/08/2023, 06:52 Workflows | Temporal Documentation

take any Actions that wouldn't be more than one minute late. An outage that lasts longer than
the Catchup Window could lead to missed Actions. (But you can always Backfill.)
Pause-on-failure

If this policy is set, a Workflow Execution started by a Schedule that ends with a failure or
timeout (but not Cancellation or Termination) causes the Schedule to automatically pause.
Note that with the AllowAll Overlap Policy, this pause might not apply to the next Workflow
Execution, because the next Workflow Execution might have started before the failed one
finished. It applies only to Workflow Executions that were scheduled to start after the failed one
finished.
Last completion result

A Workflow started by a Schedule can obtain the completion result from the most recent
successful run. (How you do this depends on the SDK you're using.)
For overlap policies that don't allow overlap, “the most recent successful run” is
straightforward to define. For the AllowAll policy, it refers to the run that completed most
recently, at the time that the run in question is started. Consider the following overlapping runs:
time -------------------------------------------->
A |----------------------|
B |-------|
C |---------------|
D |--------------T

If D asks for the last completion result at time T, it gets the result of A. Not B, even though B
started more recently, because A completed later. And not C, even though C completed after
A, because the result for D is captured when D is started, not when it's queried.
Failures and timeouts do not affect the last completion result.
Last failure

A Workflow started by a Schedule can obtain the details of the failure of the most recent run
that ended at the time when the Workflow in question was started. Unlike last completion
result, a successful run does reset the last failure.
Limitations
https://docs.temporal.io/workflows#workflow-execution 39/40
02/08/2023, 06:52 Workflows | Temporal Documentation

Internally, a Schedule is implemented as a Workflow. If you're using Advanced Visibility


(Elasticsearch), these Workflow Executions are hidden from normal views. If you're using
Standard Visibility, they are visible, though there's no need to interact with them directly.

What is a State Transition?


A State Transition is a unit of progress made by a Workflow Execution . Each State Transition
is recorded in a persistence store.
Some operations, such as Activity Heartbeats , require only one State Transition each. Most
operations require multiple State Transitions. For example, a simple Workflow with two
sequential Activity Tasks (and no retries) produces 11 State Transitions: two for Workflow
start, four for each Activity, and one for Workflow completion.

1. The Cluster usually deduplicates Signals, but does not guarantee deduplication: During
shard migration, two Signal Events (and therefore two deliveries to the Workflow
Execution) can be recorded for a single Signal because the deduping info is stored only in
memory.↩

Tags: term explanation continue-as-new resets timeouts signals queries


updates child-workflow child-workflow-executions

https://docs.temporal.io/workflows#workflow-execution 40/40

You might also like