How to set expiry for Zeebe Workflow Instance

550 views Asked by At

Is there an option to set an expiry time while initiating a workflow instance in Zeebe?

1

There are 1 answers

0
Zelldon On

Since you question is a bit vague I can just guess what you want to achieve. What you could do is to use an event subprocess with an interrupting timer start event. This will completely interrupt your workflow instance after the time is due. You can then do some clean up tasks or what ever you want.

More information about event subprocess in Zeebe you can find in the documentation.

enter image description here