Hi Dagster team! We would like a way to retry all ...
# dagster-feedback
v
Hi Dagster team! We would like a way to retry all exceptions by default with a broad retry policy, except in a few specific instances where the code has identified it cannot continue. This used to be possible thanks to the
Failure
exception, but it got "fixed" to abide by the retry policy. Could we please get an
Abort
special exception that aborts the current pipeline?
The only way to achieve this right now is to do the reverse: by not setting a retry policy, try/catching everything and raising
RetryRequested
for most issues.
s
Hi @VxD - thanks for the suggestion. I filed an issue to track this: https://github.com/dagster-io/dagster/issues/6271. @alex might have some thoughts.
v
Good stuff! Thanks sandy!
a
Ya definitely need some solution to this issue