https://kedro.org/ logo
#questions
Title
# questions
p

Priyanka Patil

09/14/2023, 7:19 PM
Hey team I want to trigger a pipeline B if pipeline A fails. Is it possible in Kedro?
d

Deepyaman Datta

09/14/2023, 7:37 PM
That's more of an orchestration question. Kedro can be integrated with various orchestrators (Prefect, Airflow, whatever), and they would support running some job if another fails.
p

Priyanka Patil

09/14/2023, 7:40 PM
Thanks Deepyaman We are using argo workflows to run the kedro pipelines. We’d like to update a table on pipeline failure. However, due to limited access and expertise, we are trying to figure out a temp fix.
d

Deepyaman Datta

09/14/2023, 7:42 PM
You can just do something like
kedro run --pipeline A || kedro run --pipeline B
if you just need something quick?
🙂 1
👍 1
👍🏼 1
p

Priyanka Patil

09/14/2023, 7:43 PM
thank you so much! 🙂