bored-laptop-29637
02/15/2023, 10:58 PM@dynamic
workflows. If I create a dynamic workflow that invokes a set of tasks and one of those tasks fails but all the others succeeds, would it try to invoke the same set of tasks if I retrigger that same dynamic workflow?
My situation is the following:
• I want to compile a dbt project to read all the nodes in the dbt DAG and translate them to flyte tasks
• I do not want to reprocess earlier nodes in the DAG if one of the nodes fail.magnificent-teacher-86590
02/16/2023, 1:57 AMbored-laptop-29637
02/16/2023, 2:01 AMmagnificent-teacher-86590
02/16/2023, 2:02 AMmagnificent-teacher-86590
02/16/2023, 2:03 AMfailure_policy
on the workflow that might be relevant for individual task failuresmagnificent-teacher-86590
02/16/2023, 2:04 AM@workflow(failure_policy=WorkflowFailurePolicy.FAIL_AFTER_EXECUTABLE_NODES_COMPLETE)
allows all possible tasks to be completed and wont stop if one of the task fails in the workflowbored-laptop-29637
02/16/2023, 2:05 AMmagnificent-teacher-86590
02/16/2023, 2:06 AMbored-laptop-29637
02/16/2023, 2:07 AM