-
Is there a way to know the currently running tasks, regardless of the broker being used? For example, with Redis, you don't see queued tasks in the admin. Even if that were the case, it may not be a solution since (not certain, could be incorrect) a queue in the admin does not always correspond to an actively running task; it might be a task waiting to be run but not actively running. What I want to know is if there is a way to know when a task (using it name for example) is actively running. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is currently not tracked. The easiest way to do this right now is to track it yourself. For example, by putting something in cache to indicate that the task started and then in the other tasks add a check on that before continuing with the task. |
Beta Was this translation helpful? Give feedback.
This is currently not tracked.
The easiest way to do this right now is to track it yourself. For example, by putting something in cache to indicate that the task started and then in the other tasks add a check on that before continuing with the task.