Hi there!
I’m using few java spring boot microservices and each of them is external client for camunda engine (for launching my service task implementations).
Camunda Engine is embedded option of one of my microservice, which store bpmn and have some rest api’s to start business processes.
However, time to time my microservice with camunda is down and at this time, all of my other microservices’re experiencing exceptionally high highloading, because of long polling. They’re trying to execute fetchAndLock, then they cannot do it, writting lot of logs with errors and my cluster (I’m using k8s in cloud) is very suffering.
Maybe I can switch some option and set timeout for between fetchAndLock requests or some another thing?
Thanks in advance!