https://prefect.io logo
Title
f

Farid

02/24/2022, 12:12 AM
Hi, How could I prevent the downstream mapped task from skipping when an upstream mapped task fails for some of the inputs? It’s mentioned here:
If the output of one mapped task is used as input to another mapped task, any failed or skipped task will make the subsequent task fail/skip by default.
How can I change this default behaviour so that the downstream mapped task runs even if the upstream mapped one fails?
k

Kevin Kho

02/24/2022, 1:31 AM
Hi @Farid, you can set a trigger with always_run so the task will always run. The input to the task will be the exception
1