maxDuration parameter sets a maximum compute time limit for tasks. When a task exceeds this duration, it will be automatically stopped. This helps prevent runaway tasks and manage compute resources effectively.
You must set a default maxDuration in your trigger.config.ts file, which will apply to all tasks unless overridden:
/config/trigger.config.ts
The minimum maxDuration is 5 seconds. If you want to avoid timeouts, set this value to a very large number of seconds.
maxDuration for a run in the following ways:
- Across all your tasks in the config
- On a specific task
- On a specific run when you trigger a task
How it works
ThemaxDuration is set in seconds, and is compared to the CPU time elapsed since the start of a single execution (which we call attempts) of the task. The CPU time is the time that the task has been actively running on the CPU, and does not include time spent waiting during the following:
wait.forcallstriggerAndWaitcallsbatchTriggerAndWaitcalls
usage utility:
/trigger/max-duration.ts
maxDuration you set. If the task exceeds the maxDuration, it will be stopped with the following error:

