I am using Springboot camunda 8 with SaS. my service is deployed to AKS and runs on two containers.
i have got simple model with 4 service tasks and works fine most of the time.
recently noticed first service task in the model is silently ignored and exceution proceed further and failed later stage because of missing first service task which got some business logic.
checked process instance on operate and it shows service task was completed in the model and dont see any logs related that service tasks even though code has log statements.
How you implemented the service task? you might have used job worker and attached it to the service task. Enable debug logs on the job worker, whether you received the request from the service task, whether its completed with all expected data. It looks like job worker completed due to this you are seeing this as finished even though you did not receive any business data.
Thanks for your reply.
Service task was implemented with job worker, it starts with log statement and got multiple log statements and rest api call as well. it doesn’t seems job worker code was executed. but it proceed further stages in bpm model.
I can see logging information for other service tasks, so there is no issue with logging enabled or not