I've added 3 run retries to all jobs by setting a ...
# dagster-plus
r
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
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
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
That's right - setting those keys there will not have any effect
r
And
locations
, of course
okay, thanks! is the
locations
needed then?
d
locations is needed, since that controls what code locations are deployed from the github action
r
great, thanks!