Zeebe服务学习1-简单部署与实现demo
1.Zeebe是什么?
Camunda公司研发的工作流引擎Zeebe,目标是对微服务的编排。具体详细介绍可以参考官网:https://zeebe.io/what-is-zeebe/
2.背景
随着微服务的发展,大家都单体服务进行了拆分,解耦,这样做引发了另外的一个问题:之前一个接口实现的功能,现在需要调用几个接口才能完成。如何解决这些原子性的接口呢?
这时候我们想到了Zeebe服务。
3.服务部署
3.1 第一步:安装环境,不管你是Linux系统还是Win系统,首先需要安装上docker,因为我的机器是Win系统,本文就是介绍Windows系统下安装使用情况
确保机器已经安装docker(没有安装的可以下载docker-win,进行安装)

3.2 第二步:在cmd里面执行命令:
docker run --name zeebe -p 26500:26500 camunda/zeebe:latest
至此,Zeebe服务已经安装成功了。
4.demo
4.1 第一步:创建一个控制台项目,这个应该都会
4.2 第二步:在项目中引用Zeebe客户端的nuget包,目前版本是0.11.0

4.3 第三步:建模,使用Zeebe Modeler工具进行建模
我需要实现的流程是:

具体的BPMN代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1011qyd" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Zeebe Modeler" exporterVersion="0.6.2">
<bpmn:process id="instock-process" name="instock-process" isExecutable="true">
<bpmn:startEvent id="start" name="start">
<bpmn:outgoing>SequenceFlow_instock</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:serviceTask id="createinstock" name="createinstock">
<bpmn:extensionElements>
<zeebe:taskDefinition type="createinstock" retries="3" />
<zeebe:ioMapping>
<zeebe:input source="InStockData" target="InStockData" />
</zeebe:ioMapping>
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_instock</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_modifystock</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:sequenceFlow id="SequenceFlow_instock" name="SequenceFlow_instock" sourceRef="start" targetRef="createinstock" />
<bpmn:serviceTask id="modifystock" name="modifystock">
<bpmn:extensionElements>
<zeebe:taskDefinition type="modifystock" retries="3" />
<zeebe:ioMapping>
<zeebe:input source="StockData" target="StockData" />
</zeebe:ioMapping>
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_modifystock</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_gateway</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:sequenceFlow id="SequenceFlow_modifystock" name="SequenceFlow_modifystock" sourceRef="createinstock" targetRef="modifystock" />
<bpmn:exclusiveGateway id="checknum" name="checknum">
<bpmn:incoming>SequenceFlow_gateway</bpmn:incoming>
<bpmn:outgoing>morethan300</bpmn:outgoing>
<bpmn:outgoing>lessthan300</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="SequenceFlow_gateway" name="SequenceFlow_gateway" sourceRef="modifystock" targetRef="checknum" />
<bpmn:serviceTask id="notify" name="notify">
<bpmn:extensionElements>
<zeebe:taskDefinition type="notify" retries="3" />
</bpmn:extensionElements>
<bpmn:incoming>morethan300</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_end</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:sequenceFlow id="morethan300" name=">=300" sourceRef="checknum" targetRef="notify">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">stocknum>=300</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:endEvent id="end" name="end">
<bpmn:incoming>lessthan300</bpmn:incoming>
<bpmn:incoming>SequenceFlow_end</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="lessthan300" name="lessthan300" sourceRef="checknum" targetRef="end">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">stocknum<300</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="SequenceFlow_end" name="SequenceFlow_end" sourceRef="notify" targetRef="end" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="instock-process">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="start">
<dc:Bounds x="112" y="159" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="119" y="202" width="23" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="ServiceTask_0zssdcw_di" bpmnElement="createinstock">
<dc:Bounds x="265" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_0yllvib_di" bpmnElement="SequenceFlow_instock">
<di:waypoint x="148" y="177" />
<di:waypoint x="265" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="163" y="159" width="88" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="ServiceTask_1db0jmn_di" bpmnElement="modifystock">
<dc:Bounds x="481" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_1uaplin_di" bpmnElement="SequenceFlow_modifystock">
<di:waypoint x="365" y="177" />
<di:waypoint x="481" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="383" y="159" width="80" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="ExclusiveGateway_1sjnk3d_di" bpmnElement="checknum" isMarkerVisible="true">
<dc:Bounds x="723" y="152" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="722" y="128" width="51" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_1hhfiqd_di" bpmnElement="SequenceFlow_gateway">
<di:waypoint x="581" y="177" />
<di:waypoint x="723" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="610" y="159" width="85" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="ServiceTask_016w4wa_di" bpmnElement="notify">
<dc:Bounds x="954" y="319" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_1ffqddr_di" bpmnElement="morethan300">
<di:waypoint x="748" y="202" />
<di:waypoint x="748" y="359" />
<di:waypoint x="954" y="359" />
<bpmndi:BPMNLabel>
<dc:Bounds x="839" y="341" width="32" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="EndEvent_01b3gni_di" bpmnElement="end">
<dc:Bounds x="1208" y="159" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="1217" y="202" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_00imkpl_di" bpmnElement="lessthan300">
<di:waypoint x="773" y="177" />
<di:waypoint x="1208" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="961" y="159" width="60" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_0c9jvp6_di" bpmnElement="SequenceFlow_end">
<di:waypoint x="1004" y="319" />
<di:waypoint x="1004" y="177" />
<di:waypoint x="1208" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="977" y="245" width="85" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>
4.4 第四步:写代码
(1)客户端代码:
internal class Program
{
private static readonly string DemoProcessPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Resources", "instock-process.bpmn");
private static readonly string ZeebeUrl = "127.0.0.1:26500";
private static dynamic WorkflowInstanceVariables = new
{
stocknum = 100
};
public static async Task Main(string[] args)
{
InitClient.Initialize(); // create zeebe client
var client = ZeebeClient.NewZeebeClient(ZeebeUrl);
// deploy
// var deployResponse = await client.NewDeployCommand().AddResourceFile(DemoProcessPath).Send(); // create workflow instance
// var workflowKey = deployResponse.Workflows[0].WorkflowKey;//2251799813685495
// 模拟调用
var workflowInstance = await client
.NewCreateWorkflowInstanceCommand()
.WorkflowKey(2251799813685495)
.Variables(JsonConvert.SerializeObject(WorkflowInstanceVariables))
.Send(); }
}
(2)服务端代码:
internal class Program
{
private static Dictionary<string, string> JobTypeAndMethod = new Dictionary<string, string>()
{
{ "createinstock","InStockJobHandler"},
{ "modifystock","StockJobHandler"},
{ "notify","NotifyJobHandler"}
};
private static readonly string ZeebeUrl = "127.0.0.1:26500";
public static async Task Main(string[] args)
{
InitClient.Initialize(); // create zeebe client
var client = ZeebeClient.NewZeebeClient(ZeebeUrl); // open job worker
await OpenJobWorkers(client);
} private static Task OpenJobWorkers(IZeebeClient client)
{ using (var signal = new EventWaitHandle(false, EventResetMode.AutoReset))
{
foreach (var item in JobTypeAndMethod)
{
client.NewWorker()
.JobType(item.Key)
.Handler(JobHandlerFactory.GetJobType(item.Value))
.MaxJobsActive(5)
.Name(item.Key)
.AutoCompletion()
.PollInterval(TimeSpan.FromSeconds(1))
.Timeout(TimeSpan.FromSeconds(10))
.Open();
}
// blocks main thread, so that worker can run
signal.WaitOne();
}
return Task.CompletedTask;
} }
客户端的代码中,只有第一次会将BPMN文件进行部署,Zeebe服务会返回一个Key,之后如果建模数据不发生改变的情况下,就可以直接使用key进行调用即可了,如果发生变化需要再一次部署才行;
每次部署都会改变工作流程的Version值(默认获取的事latestVersion)。
至此,一个简单的Zeebe Demo实现了。
Zeebe服务学习1-简单部署与实现demo的更多相关文章
- Zeebe服务学习2-状态机
1.什么是状态机? 第一次接触到这个名词,感觉自己是明白这个东东是啥的,但是后来发现,emm-,是的,只是理解了这个词而已. 贴一下官方介绍: 有限状态机,(英语:Finite-state machi ...
- Zeebe服务学习3-Raft算法与集群部署
1.背景Zeebe集群里面保证分布式一致性问题,是通过Raft实现的,其实这个算法用途比较广泛,比如Consul网关,也是通过Raft算法来实现分布式一致性的. 首先简单介绍一下Raft: 在学术界, ...
- Zeebe服务学习5-多实例特性实践
一.背景 在0.21版本之前,Zeebe不支持多实例元素,在2019年10月9号发布的0.21版本中,加入这一特性, 主要是体现在Zeebe Modeler 0.7.0以及之后的版本中. 二.特性介绍 ...
- 学习写简单的RPC框架demo
学习实现一个简单的RPC框架. 工程主要目录分级结构: rpc-common: 公共基础包,能力提供包 rpc-provider: 服务提供者 rpc-consumer:服务消费者 rpc-servi ...
- 学习写简单Spring源码demo
最近在研究怎么实现简单的Spring的源码,通过注解的方式来实现对bean的加载管理. 首先先来看下我的工程结构: (1)spring-common:定义了常用的枚举常量,工具类(如FileUtils ...
- Glue4Net简单部署基于win服务的Socket程序
smark 专注于高并发网络和大型网站架规划设计,提供.NET平台下高吞吐的网络通讯应用技术咨询和支持 Glue4Net简单部署基于win服务的Socket程序 在写一些服务应用的时候经常把要它部署到 ...
- SpringCloud微服务学习笔记
SpringCloud微服务学习笔记 项目地址: https://github.com/taoweidong/Micro-service-learning 单体架构(Monolithic架构) Mon ...
- 微服务技术栈简单介绍,Eureka和Ribbon的引入和使用
一.了解微服务架构 1.微服务技术栈 整体框架 整体学习规划路线2.微服务与单体架构的区别 单体架构:将业务的所有功能集中在一个项目中开发,打成一个包部署 优势 结构简单 部署成本低 缺点 耦合度高, ...
- XenApp简单部署
作者:MR.Yangwj 目录 XenApp简单部署... 1 一. XenApp安装... 1 (一) 服务器配置任务... 9 1) 许可证服务器配置... 9 ...
随机推荐
- Codeforces Round #643 (Div. 2) E. Restorer Distance (贪心,三分)
题意:给你\(n\)个数,每次可以使某个数++,--,或使某个数--另一个++,分别消耗\(a,r,m\).求使所有数相同最少的消耗. 题解:因为答案不是单调的,所以不能二分,但不难发现,答案只有一个 ...
- - 迷宫问题 POJ - 3984 bfs记录路径并输出最短路径
定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, ...
- CF1471-C. Strange Birthday Party
CF1471-C. Strange Birthday Party 题意: 你要举办一场生日派对.派对有\(n\)个人,每个人都有一个数字\(k_i\).超市有\(m\)件礼物,购买每件礼物需要花费\( ...
- k8s二进制部署 - node节点安装
创建kubelet配置 • set-cluster # 创建需要连接的集群信息,可以创建多个k8s集群信息 [root@hdss7-21 ~]# kubectl config set-cluster ...
- k8s-3-容器云监控系统
apollo小结 课程目录 一.容器云监控prometheus概述 https://prometheus.io/docs/introduction/overview/ #官方文档 https://gi ...
- 缓冲区溢出实验 4 内存管理(类似于malloc free)
实验环境.代码.及准备 https://www.cnblogs.com/lqerio/p/12870834.html vul4 观察foo函数,可见问题在于最后一次tfree(q).由于之前已经tfr ...
- leetcode8 字符串转换整数
<cctype> isdigit(char) 问题:在做乘法,加法前,先判断是否溢出 &&优先级大于== 然后教训: 考虑情况不周.比如3.14这样 然后解决办法 多自己搞 ...
- JxBrowser: 6.6.1 Crack
JxBrowser: 6.6.1. 1. RELEASE NOTES Download:HomePage JxBrowser is a cross-platform library that prov ...
- Vue 3.x Composition API
Vue 3.x Composition API setup 调用时机 创建组件实例,然后初始化 props ,紧接着就调用setup 函数; 从生命周期钩子的视角来看,它会在 beforeCreate ...
- css skeleton & web app skeleton
css skeleton & web app skeleton skeleton https://www.cnblogs.com/xgqfrms/p/10437258.html https:/ ...