Hi, I have a workflow. Task A needs to be executed at three in the morning, and task B needs to be e...
c
Hi, I have a workflow. Task A needs to be executed at three in the morning, and task B needs to be executed after task A is completed and no earlier than four in the morning. What should I do?
n
hi @Calvin Kirs - you should be able to use this approach where you put a
run_deployment
call that triggers B in an
on_completion
hook on A this assumes that A can actually finish in an hour
🙌 1
c
Thanks:) If the task execution cycle of each node is different, how can I deal with it? I have some tasks that need to be executed every day, and some tasks that need to be executed once a month. They are in the same DAG.🤣