Not able to track the service task in flowable

I have created a workflow with few service tasks. At runtime, the status of these service tasks is unidentified, as it is not persisted. It is observed, data would be stored if and only if all the service tasks are complete. Is it possible to persist data afer completing each service task?

Please let me know, if there is any other way to track service tasks execution at runtime.

I am using javadelage interface implementation for each service task.

You can use the async flag on the ServiceTasks to persist them as the process is running.
Check out the documentation about this at https://flowable.com/open-source/docs/bpmn/ch07b-BPMN-Constructs/#transactions-and-concurrency

thank you very much :slight_smile: