Sorry, lots of questions today but I'm ramping up ...
# announcements
f
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
hey Fran, I think this is most likely what you want: https://docs.dagster.io/examples/hooks#apply-a-hook-on-a-pipeline
f
Hi Nate, yes that might be an option. I'll try this way.
n
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
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