Hello world task and how to trigger it
Here’s an incredibly simple task:/trigger/hello-world.ts
- From the dashboard using the “Test” feature.
- Trigger it from your backend code. See the full triggering guide here.
Your backend code
Defining a task
The task function takes an object with the following fields.
The id field
This is used to identify your task so it can be triggered, managed, and you can view runs in the dashboard. This must be unique in your project – we recommend making it descriptive and unique.
The run function
Your custom code inside run() will be executed when your task is triggered. It’s an async function that has two arguments:
- The run payload - the data that you pass to the task when you trigger it.
- An object with
ctxabout the run (Context), and any output from the optionalinitfunction that runs before every run attempt.
run function will be the result of the task. Data you return must be JSON serializable: strings, numbers, booleans, arrays, objects, and null.
retry options
A task is retried if an error is thrown, by default we retry 3 times.
You can set the number of retries and the delay between retries in the retry field:
/trigger/retry.ts
queue options
Queues allow you to control the concurrency of your tasks. This allows you to have one-at-a-time execution and parallel executions. There are also more advanced techniques like having different concurrencies for different sets of your users. For more information read the concurrency & queues guide.
/trigger/one-at-a-time.ts
machine options
Some tasks require more vCPUs or GBs of RAM. You can specify these requirements in the machine field. For more information read the machines guide.
/trigger/heavy-task.ts
maxDuration option
By default tasks can execute indefinitely, which can be great! But you also might want to set a maxDuration to prevent a task from running too long. You can set the maxDuration on a task, and all runs of that task will be stopped if they exceed the duration.
/trigger/long-task.ts
Global lifecycle hooks
When specifying global lifecycle hooks, we recommend using the
init.ts file.trigger.config.ts file, you can also register them anywhere in your codebase:
init.ts
If you create a init.ts file at the root of your trigger directory, it will be automatically loaded when a task is executed. This is useful if you want to register global lifecycle hooks, or initialize a database connection, etc.
init.ts

