Hey team I want to trigger a pipeline B if pipelin...
# questions
p
Hey team I want to trigger a pipeline B if pipeline A fails. Is it possible in Kedro?
d
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
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
You can just do something like
kedro run --pipeline A || kedro run --pipeline B
if you just need something quick?
🙂 1
👍 1
👍🏼 1
p
thank you so much! 🙂