https://dagster.io/ logo
f

Fran Sanchez

01/27/2021, 5:15 PM
Sorry, lots of questions today but I'm ramping up with dagster 😄 I'd like to send a notification at the end of the pipeline, regardless of what happened with the rest of the pipeline (i.e. something went wrong or actually it finished properly). How can I do this with dagster? For reference, currently I achieve this behaviour with Airflow using
trigger_rule=TriggerRule.ALL_DONE
n

nate

01/27/2021, 5:17 PM
hey Fran, I think this is most likely what you want: https://docs.dagster.io/examples/hooks#apply-a-hook-on-a-pipeline
f

Fran Sanchez

01/27/2021, 5:19 PM
Hi Nate, yes that might be an option. I'll try this way.
n

nate

01/27/2021, 7:10 PM
actually, looks like this is not quite the same thing; @yuhan just filed https://github.com/dagster-io/dagster/issues/3613 for this
👍 1
f

Fran Sanchez

01/27/2021, 7:13 PM
For now I will use the failure hook attached to the pipeline and the success to my last solid in the pipeline
Should give me something equivalent in my case
Because it's purely sequential