https://dagster.io/ logo
#dagster-support
Title
# dagster-support
s

S N V C Sridevi Jaddu

03/28/2022, 6:00 PM
Hi Everyone,I recently started Dagster currently i'm trying to schedule jobs and set dependency for the same. Could anyone help me in giving a brief about Job Scheduling,dependency and notifications in Dagster
o

owen

03/28/2022, 6:23 PM
hi @S N V C Sridevi Jaddu -- are trying to create jobs that have a dependency on other jobs? For doing that, we have a run status sensors , which allow you to kick off runs of a job whenever a job succeeds (or fails). For running jobs on a schedule, you can check out or docs for scheduling jobs , and depending on what types of notifications you want, you could use hooks (to send notifications when a specific op fails/succeeds), or run status sensors again (to send notifications when the entire job fails / succeeds)
s

S N V C Sridevi Jaddu

03/28/2022, 6:54 PM
My scenario is I have Fivetran,dbt,snowflake I should have my fivetran sync happening at the beginning up on successful completion of that i need my dbt models to start followed by snowflake Stored Proc's execution I have to set dependencies for all the three sequentially then at the end need notification sent via mail to group of developers
In the Op hooks I found only slack notification but not email so I was just wondering if we could have email notification too
or is it only slack notify for now
o

owen

03/28/2022, 7:28 PM
for run status stuff, we have a make_email_on_run_failure_sensor , but we don't have a built in option for emailing from op hooks. it's fairly straightforward to write your own though
s

S N V C Sridevi Jaddu

03/29/2022, 5:31 AM
Thank you for the confirmation it helped
Btw @owen I have read in the dagster docs about pagerduty through pagerduty can we have email notification enabled
1
3 Views