Interface: WorkerOptions
worker.WorkerOptions
Options to configure the Worker
Some options can significantly affect Worker's performance. Default settings are generally appropriate for day-to-day development, but unlikely to be suitable for production use. We recommend that you explicitly set values for every performance-related option on production deployment.
Propertiesâ
activitiesâ
âĸ Optional activities: object
Mapping of activity name to implementation
activityTaskPollerBehaviorâ
âĸ Optional activityTaskPollerBehavior: PollerBehavior
Specify the behavior of activity task polling.
Default
A fixed maximum whose value is min(10, maxConcurrentActivityTaskExecutions).
buildIdâ
âĸ Optional buildId: string
A string that should be unique to the exact worker code/binary being executed.
This is used to uniquely identify the worker's code for a handful of purposes, including the
worker versioning feature if you have opted into that with
WorkerOptions.useVersioning. It will also populate the binaryChecksum field
on older servers.
âšī¸ Required if useVersioning is true.
â ī¸ NOTE: When used with versioning, you must pass this build ID to updateBuildIdCompatibility. Otherwise, this Worker will not pick up any tasks.
Default
@temporalio/worker package name and version + checksum of workflow bundle's code
Deprecated
Worker Versioning is now deprecated. Use workerDeploymentOptions instead: https://docs.temporal.io/worker-deployments
bundlerOptionsâ
âĸ Optional bundlerOptions: Object
Type declarationâ
| Name | Type | Description |
|---|---|---|
ignoreModules? | string[] | List of modules to be excluded from the Workflows bundle. Use this option when your Workflow code references an import that cannot be used in isolation, e.g. a Node.js built-in module. Modules listed here MUST not be used at runtime. > NOTE: This is an advanced option that should be used with care. |
preloadModules? | string[] | List of modules to preload once during reusable V8 context bootstrap. This option is only beneficial when WorkerOptions.reuseV8Context is enabled. Preloaded modules are shared across workflows that execute in the same reusable V8 context, and their module scope runs before a workflow activator exists. > NOTE: This is an advanced option that should be used with care. Preloading modules that internally stores some form of per-workflow state will very likely cause workflow context leak, which may result in non-deterministic behavior and/or cause other unexpected behaviors. |
webpackConfigHook? | (config: Configuration) => Configuration | - |
connectionâ
âĸ Optional connection: NativeConnection
A connected NativeConnection instance.
If not provided, the worker will default to connect insecurely to localhost:7233.
dataConverterâ
âĸ Optional dataConverter: DataConverter
Provide a custom DataConverter.
When bundling workflows ahead of time, make sure to provide custom payload and failure
converter paths as options to bundleWorkflowCode.
debugModeâ
âĸ Optional debugMode: boolean
If true Worker runs Workflows in the same thread allowing debugger to
attach to Workflow instances.
Workflow execution time will not be limited by the Worker in debugMode.
Default
false unless the TEMPORAL_DEBUG environment variable is set.
defaultHeartbeatThrottleIntervalâ
âĸ Optional defaultHeartbeatThrottleInterval: Duration
Default interval for throttling activity heartbeats in case
ActivityOptions.heartbeat_timeout is unset.
When the timeout is set in the ActivityOptions, throttling is set to
heartbeat_timeout * 0.8.
Format
number of milliseconds or ms-formatted string
Default
30 seconds
enableNonLocalActivitiesâ
âĸ Optional enableNonLocalActivities: boolean
Whether or not to poll on the Activity task queue.
If disabled and activities are registered on the Worker, it will run only local Activities. This setting is ignored if no activity is registed on the Worker.
Default
true
enableSDKTracingâ
âĸ Optional enableSDKTracing: boolean
Deprecated
SDK tracing is no longer supported. This option is ignored.
identityâ
âĸ Optional identity: string
A human-readable string that can identify your worker
Note that in most production environments, the identity value set by default may be unhelpful for traceability
purposes. It is highly recommended that you set this value to something that will allow you to efficiently identify
that particular Worker container/process/logs in your infrastructure (ex: the task ID allocated to this container
by your orchestrator).
Default
${process.pid}@${os.hostname()}
interceptorsâ
âĸ Optional interceptors: WorkerInterceptors
A mapping of interceptor type to a list of factories or module paths.
Interceptors are called in order, from the first to the last, each one making the call to the next one, and the last one calling the original (SDK provided) function.
By default, WorkflowInboundLogInterceptor is installed. If you wish to customize the interceptors while keeping the defaults, use appendDefaultInterceptors.
When using workflowBundle, these Workflow interceptors (WorkerInterceptors.workflowModules) are not used.
Instead, provide them via BundleOptions.workflowInterceptorModules when calling bundleWorkflowCode.
Before v1.9.0, calling appendDefaultInterceptors() was required when registering custom interceptors in order to
preserve SDK's logging interceptors. This is no longer the case.
maxActivitiesPerSecondâ
âĸ Optional maxActivitiesPerSecond: number
Limits the number of Activities per second that this Worker will process. (Does not limit the number of Local Activities.) The Worker will not poll for new Activities if by doing so it might receive and execute an Activity which would cause it to exceed this limit. Must be a positive number.
If unset, no rate limiting will be applied to Worker's Activities. (temporal task-queue describe will display the
absence of a limit as 100,000.)
maxCachedWorkflowsâ
âĸ Optional maxCachedWorkflows: number
The number of Workflow isolates to keep in cached in memory
Cached Workflows continue execution from their last stopping point. If the Worker is asked to run an uncached Workflow, it will need to fetch and replay the entire Workflow history.
When reuseV8Context is disabledâ
The major factors contributing to a Workflow Execution's memory weight are:
- its input arguments;
- allocations made and retained by the Workflow itself;
- allocations made and retained by all loaded librairies (including the Node JS builtin context);
- the size of all Payloads sent or received by the Workflow (see Core SDK issue #363).
Most users are able to fil at least 250 Workflows per GB of available memory. In some performance test, we managed to fit 750 Workflows per GB. Your millage may vary.
When reuseV8Context is enabledâ
The major factors contributing to a Workflow Execution's memory weight are:
- its input arguments;
- allocations made and retained by the Workflow itself;
- the size of all Payloads sent or received by the Workflow (see Core SDK issue #363).
Since most objects are shared/reused across Workflows, the per-Workflow memory footprint is much smaller. Most users are able to fit at least 600 Workflows per GB of available memory. In one reference performance test, memory usage grew by approximately 1 MB per cached Workflow (that is including memory used for activity executions of these Workflows). Your millage may vary.
Default
if reuseV8Context = true, then max(floor(max(maxHeapMemory - 200MB, 0) * (600WF / 1024MB)), 10).
Otherwise max(floor(max(maxHeapMemory - 400MB, 0) * (250WF / 1024MB)), 10)
maxConcurrentActivityTaskExecutionsâ
âĸ Optional maxConcurrentActivityTaskExecutions: number
Maximum number of Activity tasks to execute concurrently. Adjust this to improve Worker resource consumption.
Mutually exclusive with the tuner option.
Default
100 if no {@link tuner} is set
maxConcurrentActivityTaskPollsâ
âĸ Optional maxConcurrentActivityTaskPolls: number
Maximum number of Activity tasks to poll concurrently.
Increase this setting if your Worker is failing to fill in all of its
maxConcurrentActivityTaskExecutions slots despite a backlog of Activity
Tasks in the Task Queue (ie. due to network latency). Can't be higher than
maxConcurrentActivityTaskExecutions.
Default
min(10, maxConcurrentActivityTaskExecutions)
maxConcurrentLocalActivityExecutionsâ
âĸ Optional maxConcurrentLocalActivityExecutions: number
Maximum number of Activity tasks to execute concurrently. Adjust this to improve Worker resource consumption.
Mutually exclusive with the tuner option.
Default
100 if no {@link tuner} is set
maxConcurrentNexusTaskExecutionsâ
âĸ Optional maxConcurrentNexusTaskExecutions: number
Maximum number of Nexus tasks to execute concurrently. Adjust this to improve Worker resource consumption.
Mutually exclusive with the tuner option.
Default
100 if no {@link tuner} is set
@experimental Nexus support in Temporal SDK is experimental.
maxConcurrentNexusTaskPollsâ
âĸ Optional maxConcurrentNexusTaskPolls: number
Maximum number of Nexus tasks to poll concurrently.
Increase this setting if your Worker is failing to fill in all of its
maxConcurrentNexusTaskExecutions slots despite a low match rate of Nexus
Tasks in the Task Queue (ie. due to network latency). Can't be higher than
maxConcurrentNexusTaskExecutions.
Default
min(10, maxConcurrentNexusTaskExecutions)
@experimental Nexus support in Temporal SDK is experimental.
maxConcurrentWorkflowTaskExecutionsâ
âĸ Optional maxConcurrentWorkflowTaskExecutions: number
Maximum number of Workflow Tasks to execute concurrently.
In general, a Workflow Worker's performance is mostly network bound (due to communication latency with the Temporal server). Accepting multiple Workflow Tasks concurrently helps compensate for network latency, until the point where the Worker gets CPU bound.
Increasing this number will have no impact if Workflow Task pollers can't fill available execution slots fast
enough. Therefore, when adjusting this value, you may want to similarly adjust maxConcurrentWorkflowTaskPolls.
See WorkerOptions.maxConcurrentWorkflowTaskPolls for more information.
Also, setting this value too high might cause Workflow Task timeouts due to the fact that the Worker is not able to complete processing accepted Workflow Tasks fast enough. Increasing the number of Workflow threads (see WorkerOptions.workflowThreadPoolSize) may help in that case.
General guidelines:
- High latency to Temporal Server => Increase this number
- Very short Workflow Tasks (no lengthy Local Activities) => increase this number
- Very long/heavy Workflow Histories => decrease this number
- Low CPU usage despite backlog of Workflow Tasks => increase this number
- High number of Workflow Task timeouts => decrease this number
In some performance test against Temporal Cloud, running with a single Workflow thread and the Reuse V8 Context
option enabled, we reached peak performance with a maxConcurrentWorkflowTaskExecutions of 120, and
maxConcurrentWorkflowTaskPolls of 60 (worker machine: Apple M2 Max; ping of 74 ms to Temporal Cloud;
load test scenario: "activityCancellation10kIters", which has short histories, running a single activity).
Your millage may vary.
Can't be lower than 2 if maxCachedWorkflows is non-zero.
Mutually exclusive with the tuner option.
Default
40 if no {@link tuner} is set
maxConcurrentWorkflowTaskPollsâ
âĸ Optional maxConcurrentWorkflowTaskPolls: number
Maximum number of Workflow Tasks to poll concurrently.
In general, a Workflow Worker's performance is mostly network bound (due to communication latency with the Temporal server). Polling multiple Workflow Tasks concurrently helps compensate for this latency, by ensuring that the Worker is not starved waiting for the server to return new Workflow Tasks to execute.
This setting is highly related with WorkerOptions.maxConcurrentWorkflowTaskExecutions. In various
performance tests, we generally got optimal performance by setting this value to about half of
maxConcurrentWorkflowTaskExecutions. Your millage may vary.
Setting this value higher than needed may have negative impact on the server's performance. Consequently, the server may impose a limit on the total number of concurrent Workflow Task pollers.
General guidelines:
- By default, set this value to half of
maxConcurrentWorkflowTaskExecutions. - Increase if actual number of Workflow Tasks being processed concurrently is lower than
maxConcurrentWorkflowTaskExecutionsdespite a backlog of Workflow Tasks in the Task Queue. - Keep this value low for Task Queues which have very few concurrent Workflow Executions.
Can't be higher than maxConcurrentWorkflowTaskExecutions, and can't be lower than 2.
Default
min(10, maxConcurrentWorkflowTaskExecutions)
maxHeartbeatThrottleIntervalâ
âĸ Optional maxHeartbeatThrottleInterval: Duration
Longest interval for throttling activity heartbeats
Format
number of milliseconds or ms-formatted string
Default
60 seconds
maxTaskQueueActivitiesPerSecondâ
âĸ Optional maxTaskQueueActivitiesPerSecond: number
Sets the maximum number of activities per second the task queue will dispatch, controlled server-side. Note that this only takes effect upon an activity poll request. If multiple workers on the same queue have different values set, they will thrash with the last poller winning.
If unset, no rate limiting will be applied to the task queue.
namespaceâ
âĸ Optional namespace: string
The namespace this worker will connect to
Default
"default"
nexusServicesâ
âĸ Optional nexusServices: ServiceHandler<any>[]
An array of Nexus services
Nexus support in Temporal SDK is experimental.
nexusTaskPollerBehaviorâ
âĸ Optional nexusTaskPollerBehavior: PollerBehavior
Specify the behavior of Nexus task polling.
Default
A fixed maximum whose value is min(10, maxConcurrentNexusTaskExecutions).
@experimental Nexus support in Temporal SDK is experimental.
nonStickyToStickyPollRatioâ
âĸ Optional nonStickyToStickyPollRatio: number
maxConcurrentWorkflowTaskPolls * this number = the number of max pollers that will
be allowed for the nonsticky queue when sticky tasks are enabled. If both defaults are used,
the sticky queue will allow 8 max pollers while the nonsticky queue will allow 2. The
minimum for either poller is 1, so if maxConcurrentWorkflowTaskPolls is 1 and sticky queues are
enabled, there will be 2 concurrent polls.
Default
0.2
pluginsâ
âĸ Optional plugins: WorkerPlugin[]
List of plugins to register with the worker.
Plugins allow you to extend and customize the behavior of Temporal workers. They can intercept and modify worker creation, configuration, and execution.
Worker plugins can be used to add custom activities, workflows, interceptors, or modify other worker settings before the worker is fully initialized.
Any plugins provided will also be passed to the bundler if used.
Plugins is an experimental feature; APIs may change without notice.
reuseV8Contextâ
âĸ Optional reuseV8Context: boolean
Toggle whether to reuse a single V8 context for the workflow sandbox.
Context reuse significantly decreases the amount of resources taken up by workflows. From running basic stress tests we've observed 2/3 reduction in memory usage and 1/3 to 1/2 in CPU usage with this feature turned on.
NOTE: We strongly recommend enabling the Reuse V8 Context execution model, and there is currently no known reason
not to use it. Support for the legacy execution model may get removed at some point in the future. Please report
any issue that requires you to disable reuseV8Context.
Default
true