DLQ Equivalent
Is there a deadletter "queue" equivalent for workflows/workflow steps? Ie. I want to know when a step stopped retrying so I can manually intervene.
1 Reply
It would be very useful.
A proposed API could be to have an error callback for the step's
do
method, which is invoked whenever the step fails. It could show the retry count and whether it is a final invocation.
Looking forward to it. It will make workflows even better.
The reason I proposed the optional error callback on the step level is because my mental model of Workflows are that it is essentially an orchestration of dynamic queues/steps. For that reason, it would be nice if each step has meta information about attempts
, etc, analogous to how message currently work for queue batches.