@Niall I’m using Spring Boot 1.4.0. with embedded Camunda Engine and MySQL 5.7.21.
I have a daily workflow which starts by executing query to fetch all candidates for which process need to be started.
After that, in parallel stream I’m doing a processing (check additional conditions) and fill map with processes and variables to be started after processing phase. Something like “process-name”: {“variable-1”: “variable1-value”, “variable2”: “variable2-value”}, etc.
In last stage I’m going through the map of data in step before and start process instances.
It’s hard to reproduce, but I think it happens when default execution time of 5 minutes exceeded. After increasing the execution time it disappear.