How to stop a running timer start event

Hi,

I had created a bpmn which triggers a workflow every 5 seconds. Problem is, I am unable to stop it from making new process instances. The process instances have reached near 4k. How do I stop it? I have deleted the deployment from Camunda Cockpit. Please help.

There are a number of solutions

  • Deploy a new process definition with the same Key that has the timer removed.
  • Suspend the process definitionvia the REST API
3 Likes

Thanks for your prompt reply. It worked. Used the REST API : PUT /process-instance/{id}/suspended

2 Likes