You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our project, we use a run_failure_sensor (see here). Here we check whether a failed run contains certain errors (e.g. “DagsterExecutionInterruptedError”). If so, we want to start a re-execution of this run (ideally, it should be a re-execution and not a normal run with the same parameters, as the previous runs are displayed in the user interface in the case of a re-execution).
The runs we want to re-run were started by the Automaterialize sensor. Thus, we have no jobs created for them, so Dagster will automatically create a job (_ASSET_JOB) in the background. So far I could only find ways to start a rerun for runs for which we have created a job, but not for the automatically created runs.
Is there a possibility to start a re-execution (within a Run Failure Sensor) for a run that was started with an automatically created job?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In our project, we use a run_failure_sensor (see here). Here we check whether a failed run contains certain errors (e.g. “DagsterExecutionInterruptedError”). If so, we want to start a re-execution of this run (ideally, it should be a re-execution and not a normal run with the same parameters, as the previous runs are displayed in the user interface in the case of a re-execution).
The runs we want to re-run were started by the Automaterialize sensor. Thus, we have no jobs created for them, so Dagster will automatically create a job (_ASSET_JOB) in the background. So far I could only find ways to start a rerun for runs for which we have created a job, but not for the automatically created runs.
Is there a possibility to start a re-execution (within a Run Failure Sensor) for a run that was started with an automatically created job?
Beta Was this translation helpful? Give feedback.
All reactions