Recently I have tried using zeebe, zeebe io on scala, and I have some unfinished instances, and donno how to remove them, can anyone suggest me any desicion about that?
Asked
Active
Viewed 930 times
1

Baktiyar Bekbergen
- 374
- 2
- 4
- 24
1 Answers
2
Workflow instances can be canceled via:
Comand line:
zbctl cancel instance INSTANCE_KEY
Programmatically via Client (java api example):
zeebeClient
.newCancelInstanceCommand(instanceKey)
.send();
or directly in operate with the cancel button at the right of each line.

Zelldon
- 5,396
- 3
- 34
- 46
-
cancel button on camunda didn't work, i will try first command, thanks – Baktiyar Bekbergen Jan 07 '20 at 18:21