https://dagster.io/ logo
Title
r

Ryan Meekins

03/20/2023, 5:35 PM
I've added 3 run retries to all jobs by setting a default in the
dagster_cloud.yaml
. However, I just had a job failure and am not seeing any info about it retrying the failed job? https://docs.dagster.io/deployment/run-retries#configuration
d

daniel

03/20/2023, 5:36 PM
Hey Ryan - you can control this in cloud via deployment settings in the Dagster Cloud UI: https://docs.dagster.io/dagster-cloud/developing-testing/managing-deployments#configuring-deployment-settings
(the names are a bit confusing -
dagster_cloud.yaml
just affects what code is deployed from your github action and doesn't change settings like this)
r

Ryan Meekins

03/20/2023, 5:39 PM
okay, so I shouldn't be specifying any settings in my
dagster_cloud.yaml
file? I've specified
run_retries
,
run_queue
, and
run_monitoring
d

daniel

03/20/2023, 5:39 PM
That's right - setting those keys there will not have any effect
r

Ryan Meekins

03/20/2023, 5:39 PM
And
locations
, of course
okay, thanks! is the
locations
needed then?
d

daniel

03/20/2023, 5:39 PM
locations is needed, since that controls what code locations are deployed from the github action
r

Ryan Meekins

03/20/2023, 6:15 PM
great, thanks!