|
| 1 | +import logging |
| 2 | +import time |
| 3 | +from uuid import uuid4 |
| 4 | + |
| 5 | +import dramatiq |
| 6 | +import dramatiq.rate_limits |
| 7 | + |
| 8 | +from ._constants import CALLBACK_BARRIER_TTL, OPTION_KEY_CALLBACKS |
| 9 | +from ._helpers import workflow_with_completion_callbacks |
| 10 | +from ._middleware import WorkflowMiddleware, workflow_noop |
| 11 | +from ._models import Barrier, Chain, CompletionCallbacks, Group, Message, WithDelay, WorkflowType |
| 12 | +from ._serialize import serialize_callbacks, serialize_workflow |
| 13 | + |
| 14 | +logger = logging.getLogger(__name__) |
| 15 | + |
| 16 | + |
| 17 | +class Workflow: |
| 18 | + """ |
| 19 | + A workflow allows running tasks in parallel and in sequence. It is a way to |
| 20 | + define a workflow of tasks, a combination of chains and groups in any |
| 21 | + order and nested as needed. |
| 22 | +
|
| 23 | + Example: |
| 24 | +
|
| 25 | + Let's assume we want a workflow that looks like this: |
| 26 | +
|
| 27 | + ╭────────╮ ╭────────╮ |
| 28 | + │ Task 2 │ │ Task 5 │ |
| 29 | + ╭──┼● ●┼──┼● ●┼╮ |
| 30 | + ╭────────╮│ ╰────────╯ ╰────────╯│ ╭────────╮ |
| 31 | + │ Task 1 ││ ╭────────╮ │ │ Task 8 │ |
| 32 | + │ ●┼╯ │ Task 3 │ ╰──┼● │ |
| 33 | + │ ●┼───┼● ●┼───────────────┼● │ |
| 34 | + │ ●┼╮ ╰────────╯ ╭─┼● │ |
| 35 | + ╰────────╯│ ╭────────╮ ╭────────╮│╭┼● │ |
| 36 | + │ │ Task 4 │ │ Task 6 │││╰────────╯ |
| 37 | + ╰──┼● ●┼───┼● ●┼╯│ |
| 38 | + │ ●┼╮ ╰────────╯ │ |
| 39 | + ╰────────╯│ │ |
| 40 | + │ ╭────────╮ │ |
| 41 | + │ │ Task 7 │ │ |
| 42 | + ╰──┼● ●┼─╯ |
| 43 | + ╰────────╯ |
| 44 | +
|
| 45 | + We can define this workflow as follows: |
| 46 | +
|
| 47 | + ```python |
| 48 | + from dramatiq_workflow import Workflow, Chain, Group |
| 49 | +
|
| 50 | + workflow = Workflow( |
| 51 | + Chain( |
| 52 | + task1.message(), |
| 53 | + Group( |
| 54 | + Chain( |
| 55 | + task2.message(), |
| 56 | + task5.message(), |
| 57 | + ), |
| 58 | + task3.message(), |
| 59 | + Chain( |
| 60 | + task4.message(), |
| 61 | + Group( |
| 62 | + task6.message(), |
| 63 | + task7.message(), |
| 64 | + ), |
| 65 | + ), |
| 66 | + ), |
| 67 | + task8.message(), |
| 68 | + ), |
| 69 | + ) |
| 70 | + workflow.run() # Schedules the workflow to run in the background |
| 71 | + ``` |
| 72 | +
|
| 73 | + In this example, the execution would look like this*: |
| 74 | + 1. Task 1 runs |
| 75 | + 2. Task 2, 3, and 4 run in parallel once Task 1 finishes |
| 76 | + 3. Task 5 runs once Task 2 finishes |
| 77 | + 4. Task 6 and 7 run in parallel once Task 4 finishes |
| 78 | + 5. Task 8 runs once Task 5, 6, and 7 finish |
| 79 | +
|
| 80 | + * This is a simplified example. The actual execution order may vary because |
| 81 | + tasks that can run in parallel (i.e. in a Group) are not guaranteed to run |
| 82 | + in the order they are defined in the workflow. |
| 83 | + """ |
| 84 | + |
| 85 | + def __init__( |
| 86 | + self, |
| 87 | + workflow: WorkflowType, |
| 88 | + broker: dramatiq.Broker | None = None, |
| 89 | + ): |
| 90 | + self.workflow = workflow |
| 91 | + self.broker = broker or dramatiq.get_broker() |
| 92 | + |
| 93 | + self._delay = None |
| 94 | + self._completion_callbacks = [] |
| 95 | + |
| 96 | + while isinstance(self.workflow, WithDelay): |
| 97 | + self._delay = (self._delay or 0) + self.workflow.delay |
| 98 | + self.workflow = self.workflow.task |
| 99 | + |
| 100 | + def run(self): |
| 101 | + current = self.workflow |
| 102 | + completion_callbacks = self._completion_callbacks.copy() |
| 103 | + |
| 104 | + if isinstance(current, Message): |
| 105 | + current = self.__augment_message(current, completion_callbacks) |
| 106 | + self.broker.enqueue(current, delay=self._delay) |
| 107 | + return |
| 108 | + |
| 109 | + if isinstance(current, Chain): |
| 110 | + tasks = current.tasks[:] |
| 111 | + if not tasks: |
| 112 | + self.__schedule_noop(completion_callbacks) |
| 113 | + return |
| 114 | + |
| 115 | + task = tasks.pop(0) |
| 116 | + if tasks: |
| 117 | + completion_id = self.__create_barrier(1) |
| 118 | + completion_callbacks.append((completion_id, Chain(*tasks), False)) |
| 119 | + self.__workflow_with_completion_callbacks(task, completion_callbacks).run() |
| 120 | + return |
| 121 | + |
| 122 | + if isinstance(current, Group): |
| 123 | + tasks = current.tasks[:] |
| 124 | + if not tasks: |
| 125 | + self.__schedule_noop(completion_callbacks) |
| 126 | + return |
| 127 | + |
| 128 | + completion_id = self.__create_barrier(len(tasks)) |
| 129 | + completion_callbacks.append((completion_id, None, True)) |
| 130 | + for task in tasks: |
| 131 | + self.__workflow_with_completion_callbacks(task, completion_callbacks).run() |
| 132 | + return |
| 133 | + |
| 134 | + raise TypeError(f"Unsupported workflow type: {type(current)}") |
| 135 | + |
| 136 | + def __workflow_with_completion_callbacks(self, task, completion_callbacks) -> "Workflow": |
| 137 | + return workflow_with_completion_callbacks( |
| 138 | + task, |
| 139 | + self.broker, |
| 140 | + completion_callbacks, |
| 141 | + delay=self._delay, |
| 142 | + ) |
| 143 | + |
| 144 | + def __schedule_noop(self, completion_callbacks: CompletionCallbacks): |
| 145 | + noop_message = workflow_noop.message() |
| 146 | + noop_message = self.__augment_message(noop_message, completion_callbacks) |
| 147 | + self.broker.enqueue(noop_message, delay=self._delay) |
| 148 | + |
| 149 | + def __augment_message(self, message: Message, completion_callbacks: CompletionCallbacks) -> Message: |
| 150 | + return message.copy( |
| 151 | + # We reset the message timestamp to better represent the time the |
| 152 | + # message was actually enqueued. This is to avoid tripping the max_age |
| 153 | + # check in the broker. |
| 154 | + message_timestamp=time.time() * 1000, |
| 155 | + options={OPTION_KEY_CALLBACKS: serialize_callbacks(completion_callbacks)}, |
| 156 | + ) |
| 157 | + |
| 158 | + @property |
| 159 | + def __rate_limiter_backend(self): |
| 160 | + if not hasattr(self, "__cached_rate_limiter_backend"): |
| 161 | + for middleware in self.broker.middleware: |
| 162 | + if isinstance(middleware, WorkflowMiddleware): |
| 163 | + self.__cached_rate_limiter_backend = middleware.rate_limiter_backend |
| 164 | + break |
| 165 | + else: |
| 166 | + raise RuntimeError( |
| 167 | + "WorkflowMiddleware middleware not found! Did you forget " |
| 168 | + "to set it up? It is required if you want to use " |
| 169 | + "workflows." |
| 170 | + ) |
| 171 | + return self.__cached_rate_limiter_backend |
| 172 | + |
| 173 | + def __create_barrier(self, count: int): |
| 174 | + if count == 1: |
| 175 | + # No need to create a distributed barrier if there is only one task |
| 176 | + return None |
| 177 | + |
| 178 | + completion_uuid = str(uuid4()) |
| 179 | + completion_barrier = Barrier(self.__rate_limiter_backend, completion_uuid, ttl=CALLBACK_BARRIER_TTL) |
| 180 | + completion_barrier.create(count) |
| 181 | + logger.debug("Barrier created: %s (%d tasks)", completion_uuid, count) |
| 182 | + return completion_uuid |
| 183 | + |
| 184 | + def __str__(self): |
| 185 | + return f"Workflow({serialize_workflow(self.workflow)})" |
0 commit comments