取消部署的实例。

huangapple go评论76阅读模式
英文:

Zeebe cancel deployed instances

问题

最近我尝试在Scala上使用Zeebe和Zeebe IO,我有一些未完成的实例,不知道如何删除它们,有人可以提出关于这个的建议吗?取消部署的实例。

英文:

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?取消部署的实例。

答案1

得分: 2

工作流实例可以通过以下方式取消:

命令行:

zbctl cancel instance INSTANCE_KEY

通过客户端编程(Java API示例):

zeebeClient
   .newCancelInstanceCommand(instanceKey)
   .send();

或者直接在操作界面上,使用每行右侧的取消按钮。

英文:

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.

huangapple
  • 本文由 发表于 2020年1月6日 17:18:07
  • 转载请务必保留本文链接:https://go.coder-hub.com/59609431.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定