Brandon Segal
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.Jay Ganbat
02/16/2023, 1:57 AMBrandon Segal
02/16/2023, 2:01 AMJay Ganbat
02/16/2023, 2:02 AMfailure_policy
on the workflow that might be relevant for individual task failures@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 workflowBrandon Segal
02/16/2023, 2:05 AMJay Ganbat
02/16/2023, 2:06 AMBrandon Segal
02/16/2023, 2:07 AM