I am trying to design a camunda process which should automatically trigger every 5 mins to database and update a flag into database.
Something like a Spring batch in camunda… which runs every 5 mins…
Any example pointers to it…
Thanks,
Sridhar
I am trying to design a camunda process which should automatically trigger every 5 mins to database and update a flag into database.
Something like a Spring batch in camunda… which runs every 5 mins…
Any example pointers to it…
Thanks,
Sridhar
Hello Sridhar,
two proposals from my side,
You can create a new process instance every 5 minutes by a timer start event.
Or create only one process instance which continuosly is running until some abort condition is true.
Regards, Frank
DoSomethingEvery5Minutes.bpmn (7.8 KB)
Thank you so much let me give a try.