Would like an input with this issue.
while creating BPMN I set serviceTask that has timeout above 3 minutes as external tasks as such:
per the user guide.
but when I ran the same process multiple times with the same task, the extrenalTaskHandler is not running tasks beyond the first unless the previous one is done. aka, running the tasks from the same topic synchronously instead of fetching max tasks of 10 and running them all parallelly.
I define my ExternalTaskHandler as such:
My assumption is that the worker that subscribed to specific topic should fetch all available tasks and run them parallelly. Can you advice on what I’m doing wrong? feeling like I’m missing some property config to allow it to run 10 tasks at the same time.