Hi,
I have a process that starts many subprocesses (nearly 800) with a call activity. To avoid a StackOverflowException I set:
activiti:async="true" and isSequential="false"
My problem is that the processing of the sub processes are getting slower. At the beginning my first subprocess instances needed 3 seconds. At the end of the 800 they need 8 minutes per subprocess.
Does anybody know what the problem could be?
And what are the differences between the two attributes async and isSequential? What does it mean for database transactions?