We use cookies

We use cookies to ensure you get the best experience on our website. For more information on how we use cookies, please see our cookie policy.

By clicking "Accept", you agree to our use of cookies.
Learn more.

User GuideRun and Wait Trigger

Running with Results

This example assumes we have a task registered on a running worker.

One method for running a task in Hatchet is to run it and wait for its result. Some example use cases for this type of task trigger include:

  1. Fanout patterns, where a parent fans out work to a number of children, and wants to receive the results of those child tasks and make some decision based on them. For example, if each child run fips a coin, and the parent wants to count up how many heads there were and do something with that information.
  2. Waiting for long-running API calls to complete, such as if calling an LLM. For instance, if you had a part of your product that writes a poem for a user, your backend might run a write_poem task, which in turn calls an LLM, and then your backend would wait for that task to complete and return its result (the poem).

You can use your Task object to run a task and wait for it to complete by calling the run method. This method will block until the task completes and return the result.

You can also await the result of aio_run:

Note that the type of input here is a Pydantic model that matches the input schema of your workflow.

Spawning Tasks from within a Task

You can also spawn tasks from within a task. This is useful for composing tasks together to create more complex workflows, fanning out batched tasks, or creating conditional workflows.

You can run a task from within a task by calling the aio_run method on the task object from within a task function. This will associate the runs in the dashboard for easier debugging.

And that’s it! The parent task will run and spawn the child task, and then will collect the results from its tasks.

Running Tasks in Parallel

Sometimes you may want to run multiple tasks concurrently. Here’s how to do that in each language:

Since the aio_run method returns a coroutine, you can spawn multiple tasks in parallel and await using asyncio.gather.

While you can run multiple tasks in parallel using the Run method, this is not recommended for large numbers of tasks. Instead, we recommend using bulk run methods for large parallel task execution.