<@ULVA73B9P> What's the equivalent of SequentialTa...
# ask-marvin
j
@Marvin What's the equivalent of SequentialTaskRunner in prefect 3.x
m
User seek SequentialTaskRunner in Prefect 3.x. Got it! I'll start by searching the Prefect 3.x documentation for you. Give me just a moment. In Prefect 3.x, the concept of task runners has evolved. The
ThreadPoolTaskRunner
is the default task runner, which allows for concurrent task execution within a thread pool. For parallel or distributed execution, you can use
DaskTaskRunner
or
RayTaskRunner
. Here’s a link to the relevant section of the Prefect 3.x documentation: Task Runners in Prefect 3.x If you have further questions, feel free to ask!