Is it possible to limit the execution time of a workflow?

I have a workflow that takes 20s to execute.
It logins in a certain website, input some data and extract the results.
It uses a Queue to control the workitems. Most of the time it succeds.

In rare ocasions, it takes 50min and stays in the PROCESSING queue.
I don’t know the reason.

Is it possible to limit the execution time of a workflow, so that it fails after 2min?

Currently that is not possible, sorry.

But if you keept it clean, you should only have 1 type of workitems in the same queue that matches to only that workflow. If that is the case you could create a simple nodered workflows that gets all workitems in state processing, that has been running for more than 2 hours, and update them to state “retry”

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.