zeebe流程引擎&支持的客户端

zeebe工作流引擎

项目文档
https://docs.camunda.io/docs/components/zeebe/zeebe-overview/
https://github.com/camunda/zeebe

zeebe客户端

zeebe的生命周期

具体详见
https://docs.camunda.io/docs/components/zeebe/technical-concepts/process-lifecycles/

(Sub-)Process/Activity/Gateway lifecycle

image.png

Event lifecycle

image.png

示例

bpmn文件

image.png

<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:bpmn2="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:di="http://www.omg.org/spec/DD/20100524/DI"
    xmlns:zeebe="http://camunda.org/schema/zeebe/1.0"
  id="diagram_Process_1692093741783" targetNamespace="http://bpmn.io/schema/bpmn">
    <bpmn2:process id="Process_1692093741783" name="业务流程_1692093741783" isExecutable="true">
        <bpmn2:startEvent id="StartEvent_03363" name="开始">
            <bpmn2:outgoing>Flow_1y96xj4</bpmn2:outgoing>
        </bpmn2:startEvent>
        <bpmn2:serviceTask id="AerialOrthorectification_40796" name="正射纠正1">
            <bpmn2:extensionElements>
                <zeebe:taskDefinition type="Common" retries="0"/>
            </bpmn2:extensionElements>
            <bpmn2:incoming>Flow_1y96xj4</bpmn2:incoming>
            <bpmn2:outgoing>Flow_0ubstk2</bpmn2:outgoing>
        </bpmn2:serviceTask>
        <bpmn2:serviceTask id="AerialOrthorectification_07312" name="正射纠正12">
            <bpmn2:extensionElements>
                <zeebe:taskDefinition type="Common" retries="0"/>
            </bpmn2:extensionElements>
            <bpmn2:incoming>Flow_0ubstk2</bpmn2:incoming>
            <bpmn2:outgoing>Flow_0u2feey</bpmn2:outgoing>
        </bpmn2:serviceTask>
        <bpmn2:serviceTask id="AerialOrthorectification_23721" name="正射纠正13">
            <bpmn2:extensionElements>
                <zeebe:taskDefinition type="Common" retries="0"/>
            </bpmn2:extensionElements>
            <bpmn2:incoming>Flow_0u2feey</bpmn2:incoming>
            <bpmn2:outgoing>Flow_1gyk7i4</bpmn2:outgoing>
        </bpmn2:serviceTask>
        <bpmn2:endEvent id="Event_0t65vba">
            <bpmn2:incoming>Flow_1gyk7i4</bpmn2:incoming>
        </bpmn2:endEvent>
        <bpmn2:sequenceFlow id="Flow_1y96xj4" sourceRef="StartEvent_03363" targetRef="AerialOrthorectification_40796"/>
        <bpmn2:sequenceFlow id="Flow_0ubstk2" sourceRef="AerialOrthorectification_40796" targetRef="AerialOrthorectification_07312"/>
        <bpmn2:sequenceFlow id="Flow_0u2feey" sourceRef="AerialOrthorectification_07312" targetRef="AerialOrthorectification_23721"/>
        <bpmn2:sequenceFlow id="Flow_1gyk7i4" sourceRef="AerialOrthorectification_23721" targetRef="Event_0t65vba"/>
    </bpmn2:process>
    <bpmndi:BPMNDiagram id="BPMNDiagram_1">
        <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1692093741783">
            <bpmndi:BPMNEdge id="Flow_1y96xj4_di" bpmnElement="Flow_1y96xj4">
                <di:waypoint x="188" y="150"/>
                <di:waypoint x="240" y="150"/>
            </bpmndi:BPMNEdge>
            <bpmndi:BPMNEdge id="Flow_0ubstk2_di" bpmnElement="Flow_0ubstk2">
                <di:waypoint x="340" y="150"/>
                <di:waypoint x="430" y="150"/>
            </bpmndi:BPMNEdge>
            <bpmndi:BPMNEdge id="Flow_0u2feey_di" bpmnElement="Flow_0u2feey">
                <di:waypoint x="530" y="150"/>
                <di:waypoint x="600" y="150"/>
            </bpmndi:BPMNEdge>
            <bpmndi:BPMNEdge id="Flow_1gyk7i4_di" bpmnElement="Flow_1gyk7i4">
                <di:waypoint x="700" y="150"/>
                <di:waypoint x="772" y="150"/>
            </bpmndi:BPMNEdge>
            <bpmndi:BPMNShape id="StartEvent_03363_di" bpmnElement="StartEvent_03363">
                <dc:Bounds x="152" y="132" width="36" height="36"/>
                <bpmndi:BPMNLabel>
                    <dc:Bounds x="159" y="171" width="22" height="14"/>
                </bpmndi:BPMNLabel>
            </bpmndi:BPMNShape>
            <bpmndi:BPMNShape id="AerialOrthorectification_40796_di" bpmnElement="AerialOrthorectification_40796">
                <dc:Bounds x="240" y="110" width="100" height="80"/>
            </bpmndi:BPMNShape>
            <bpmndi:BPMNShape id="AerialOrthorectification_07312_di" bpmnElement="AerialOrthorectification_07312">
                <dc:Bounds x="430" y="110" width="100" height="80"/>
            </bpmndi:BPMNShape>
            <bpmndi:BPMNShape id="AerialOrthorectification_23721_di" bpmnElement="AerialOrthorectification_23721">
                <dc:Bounds x="600" y="110" width="100" height="80"/>
            </bpmndi:BPMNShape>
            <bpmndi:BPMNShape id="Event_0t65vba_di" bpmnElement="Event_0t65vba">
                <dc:Bounds x="772" y="132" width="36" height="36"/>
            </bpmndi:BPMNShape>
        </bpmndi:BPMNPlane>
    </bpmndi:BPMNDiagram>
</bpmn2:definitions>


事件日志

部署
{"partitionId":1,"value":{"resources":[{"resource":"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxicG1uMjpkZWZpbml0aW9ucyB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIg0KICAgICAgICAgICAgICAgICAgIHhtbG5zOmJwbW4yPSJodHRwOi8vd3d3Lm9tZy5vcmcvc3BlYy9CUE1OLzIwMTAwNTI0L01PREVMIg0KICAgICAgICAgICAgICAgICAgIHhtbG5zOmJwbW5kaT0iaHR0cDovL3d3dy5vbWcub3JnL3NwZWMvQlBNTi8yMDEwMDUyNC9ESSINCiAgICAgICAgICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3d3dy5vbWcub3JnL3NwZWMvREQvMjAxMDA1MjQvREMiDQogICAgICAgICAgICAgICAgICAgeG1sbnM6ZGk9Imh0dHA6Ly93d3cub21nLm9yZy9zcGVjL0RELzIwMTAwNTI0L0RJIg0KICAgICAgICAgICAgICAgICAgIHhtbG5zOnplZWJlPSJodHRwOi8vY2FtdW5kYS5vcmcvc2NoZW1hL3plZWJlLzEuMCINCiAgICAgICAgICAgICAgICAgICBpZD0iZGlhZ3JhbV9Qcm9jZXNzXzE2OTIwOTM3NDE3ODMiIHRhcmdldE5hbWVzcGFjZT0iaHR0cDovL2JwbW4uaW8vc2NoZW1hL2JwbW4iPg0KICAgIDxicG1uMjpwcm9jZXNzIGlkPSJQcm9jZXNzXzE2OTIwOTM3NDE3ODMiIG5hbWU9IuS4muWKoea1geeoi18xNjkyMDkzNzQxNzgzIiBpc0V4ZWN1dGFibGU9InRydWUiPg0KICAgICAgICA8YnBtbjI6c3RhcnRFdmVudCBpZD0iU3RhcnRFdmVudF8wMzM2MyIgbmFtZT0i5byA5aeLIj4NCiAgICAgICAgICAgIDxicG1uMjpvdXRnb2luZz5GbG93XzF5OTZ4ajQ8L2JwbW4yOm91dGdvaW5nPg0KICAgICAgICA8L2JwbW4yOnN0YXJ0RXZlbnQ+DQogICAgICAgIDxicG1uMjpzZXJ2aWNlVGFzayBpZD0iQWVyaWFsT3J0aG9yZWN0aWZpY2F0aW9uXzQwNzk2IiBuYW1lPSLmraPlsITnuqDmraMxIj4NCiAgICAgICAgICAgIDxicG1uMjpleHRlbnNpb25FbGVtZW50cz4NCiAgICAgICAgICAgICAgICA8emVlYmU6dGFza0RlZmluaXRpb24gdHlwZT0iQ29tbW9uIiByZXRyaWVzPSIwIi8+DQogICAgICAgICAgICA8L2JwbW4yOmV4dGVuc2lvbkVsZW1lbnRzPg0KICAgICAgICAgICAgPGJwbW4yOmluY29taW5nPkZsb3dfMXk5NnhqNDwvYnBtbjI6aW5jb21pbmc+DQogICAgICAgICAgICA8YnBtbjI6b3V0Z29pbmc+Rmxvd18wdWJzdGsyPC9icG1uMjpvdXRnb2luZz4NCiAgICAgICAgPC9icG1uMjpzZXJ2aWNlVGFzaz4NCiAgICAgICAgPGJwbW4yOnNlcnZpY2VUYXNrIGlkPSJBZXJpYWxPcnRob3JlY3RpZmljYXRpb25fMDczMTIiIG5hbWU9Iuato+WwhOe6oOatozEyIj4NCiAgICAgICAgICAgIDxicG1uMjpleHRlbnNpb25FbGVtZW50cz4NCiAgICAgICAgICAgICAgICA8emVlYmU6dGFza0RlZmluaXRpb24gdHlwZT0iQ29tbW9uIiByZXRyaWVzPSIwIi8+DQogICAgICAgICAgICA8L2JwbW4yOmV4dGVuc2lvbkVsZW1lbnRzPg0KICAgICAgICAgICAgPGJwbW4yOmluY29taW5nPkZsb3dfMHVic3RrMjwvYnBtbjI6aW5jb21pbmc+DQogICAgICAgICAgICA8YnBtbjI6b3V0Z29pbmc+Rmxvd18wdTJmZWV5PC9icG1uMjpvdXRnb2luZz4NCiAgICAgICAgPC9icG1uMjpzZXJ2aWNlVGFzaz4NCiAgICAgICAgPGJwbW4yOnNlcnZpY2VUYXNrIGlkPSJBZXJpYWxPcnRob3JlY3RpZmljYXRpb25fMjM3MjEiIG5hbWU9Iuato+WwhOe6oOatozEzIj4NCiAgICAgICAgICAgIDxicG1uMjpleHRlbnNpb25FbGVtZW50cz4NCiAgICAgICAgICAgICAgICA8emVlYmU6dGFza0RlZmluaXRpb24gdHlwZT0iQ29tbW9uIiByZXRyaWVzPSIwIi8+DQogICAgICAgICAgICA8L2JwbW4yOmV4dGVuc2lvbkVsZW1lbnRzPg0KICAgICAgICAgICAgPGJwbW4yOmluY29taW5nPkZsb3dfMHUyZmVleTwvYnBtbjI6aW5jb21pbmc+DQogICAgICAgICAgICA8YnBtbjI6b3V0Z29pbmc+Rmxvd18xZ3lrN2k0PC9icG1uMjpvdXRnb2luZz4NCiAgICAgICAgPC9icG1uMjpzZXJ2aWNlVGFzaz4NCiAgICAgICAgPGJwbW4yOmVuZEV2ZW50IGlkPSJFdmVudF8wdDY1dmJhIj4NCiAgICAgICAgICAgIDxicG1uMjppbmNvbWluZz5GbG93XzFneWs3aTQ8L2JwbW4yOmluY29taW5nPg0KICAgICAgICA8L2JwbW4yOmVuZEV2ZW50Pg0KICAgICAgICA8YnBtbjI6c2VxdWVuY2VGbG93IGlkPSJGbG93XzF5OTZ4ajQiIHNvdXJjZVJlZj0iU3RhcnRFdmVudF8wMzM2MyIgdGFyZ2V0UmVmPSJBZXJpYWxPcnRob3JlY3RpZmljYXRpb25fNDA3OTYiLz4NCiAgICAgICAgPGJwbW4yOnNlcXVlbmNlRmxvdyBpZD0iRmxvd18wdWJzdGsyIiBzb3VyY2VSZWY9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl80MDc5NiIgdGFyZ2V0UmVmPSJBZXJpYWxPcnRob3JlY3RpZmljYXRpb25fMDczMTIiLz4NCiAgICAgICAgPGJwbW4yOnNlcXVlbmNlRmxvdyBpZD0iRmxvd18wdTJmZWV5IiBzb3VyY2VSZWY9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl8wNzMxMiIgdGFyZ2V0UmVmPSJBZXJpYWxPcnRob3JlY3RpZmljYXRpb25fMjM3MjEiLz4NCiAgICAgICAgPGJwbW4yOnNlcXVlbmNlRmxvdyBpZD0iRmxvd18xZ3lrN2k0IiBzb3VyY2VSZWY9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl8yMzcyMSIgdGFyZ2V0UmVmPSJFdmVudF8wdDY1dmJhIi8+DQogICAgPC9icG1uMjpwcm9jZXNzPg0KICAgIDxicG1uZGk6QlBNTkRpYWdyYW0gaWQ9IkJQTU5EaWFncmFtXzEiPg0KICAgICAgICA8YnBtbmRpOkJQTU5QbGFuZSBpZD0iQlBNTlBsYW5lXzEiIGJwbW5FbGVtZW50PSJQcm9jZXNzXzE2OTIwOTM3NDE3ODMiPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1ORWRnZSBpZD0iRmxvd18xeTk2eGo0X2RpIiBicG1uRWxlbWVudD0iRmxvd18xeTk2eGo0Ij4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iMTg4IiB5PSIxNTAiLz4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iMjQwIiB5PSIxNTAiLz4NCiAgICAgICAgICAgIDwvYnBtbmRpOkJQTU5FZGdlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1ORWRnZSBpZD0iRmxvd18wdWJzdGsyX2RpIiBicG1uRWxlbWVudD0iRmxvd18wdWJzdGsyIj4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iMzQwIiB5PSIxNTAiLz4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iNDMwIiB5PSIxNTAiLz4NCiAgICAgICAgICAgIDwvYnBtbmRpOkJQTU5FZGdlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1ORWRnZSBpZD0iRmxvd18wdTJmZWV5X2RpIiBicG1uRWxlbWVudD0iRmxvd18wdTJmZWV5Ij4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iNTMwIiB5PSIxNTAiLz4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iNjAwIiB5PSIxNTAiLz4NCiAgICAgICAgICAgIDwvYnBtbmRpOkJQTU5FZGdlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1ORWRnZSBpZD0iRmxvd18xZ3lrN2k0X2RpIiBicG1uRWxlbWVudD0iRmxvd18xZ3lrN2k0Ij4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iNzAwIiB5PSIxNTAiLz4NCiAgICAgICAgICAgICAgICA8ZGk6d2F5cG9pbnQgeD0iNzcyIiB5PSIxNTAiLz4NCiAgICAgICAgICAgIDwvYnBtbmRpOkJQTU5FZGdlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1OU2hhcGUgaWQ9IlN0YXJ0RXZlbnRfMDMzNjNfZGkiIGJwbW5FbGVtZW50PSJTdGFydEV2ZW50XzAzMzYzIj4NCiAgICAgICAgICAgICAgICA8ZGM6Qm91bmRzIHg9IjE1MiIgeT0iMTMyIiB3aWR0aD0iMzYiIGhlaWdodD0iMzYiLz4NCiAgICAgICAgICAgICAgICA8YnBtbmRpOkJQTU5MYWJlbD4NCiAgICAgICAgICAgICAgICAgICAgPGRjOkJvdW5kcyB4PSIxNTkiIHk9IjE3MSIgd2lkdGg9IjIyIiBoZWlnaHQ9IjE0Ii8+DQogICAgICAgICAgICAgICAgPC9icG1uZGk6QlBNTkxhYmVsPg0KICAgICAgICAgICAgPC9icG1uZGk6QlBNTlNoYXBlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1OU2hhcGUgaWQ9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl80MDc5Nl9kaSIgYnBtbkVsZW1lbnQ9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl80MDc5NiI+DQogICAgICAgICAgICAgICAgPGRjOkJvdW5kcyB4PSIyNDAiIHk9IjExMCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSI4MCIvPg0KICAgICAgICAgICAgPC9icG1uZGk6QlBNTlNoYXBlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1OU2hhcGUgaWQ9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl8wNzMxMl9kaSIgYnBtbkVsZW1lbnQ9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl8wNzMxMiI+DQogICAgICAgICAgICAgICAgPGRjOkJvdW5kcyB4PSI0MzAiIHk9IjExMCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSI4MCIvPg0KICAgICAgICAgICAgPC9icG1uZGk6QlBNTlNoYXBlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1OU2hhcGUgaWQ9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl8yMzcyMV9kaSIgYnBtbkVsZW1lbnQ9IkFlcmlhbE9ydGhvcmVjdGlmaWNhdGlvbl8yMzcyMSI+DQogICAgICAgICAgICAgICAgPGRjOkJvdW5kcyB4PSI2MDAiIHk9IjExMCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSI4MCIvPg0KICAgICAgICAgICAgPC9icG1uZGk6QlBNTlNoYXBlPg0KICAgICAgICAgICAgPGJwbW5kaTpCUE1OU2hhcGUgaWQ9IkV2ZW50XzB0NjV2YmFfZGkiIGJwbW5FbGVtZW50PSJFdmVudF8wdDY1dmJhIj4NCiAgICAgICAgICAgICAgICA8ZGM6Qm91bmRzIHg9Ijc3MiIgeT0iMTMyIiB3aWR0aD0iMzYiIGhlaWdodD0iMzYiLz4NCiAgICAgICAgICAgIDwvYnBtbmRpOkJQTU5TaGFwZT4NCiAgICAgICAgPC9icG1uZGk6QlBNTlBsYW5lPg0KICAgIDwvYnBtbmRpOkJQTU5EaWFncmFtPg0KPC9icG1uMjpkZWZpbml0aW9ucz4NCg0K","resourceName":"test.bpmn"}],"processesMetadata":[{"version":1,"bpmnProcessId":"Process_1692093741783","duplicate":true,"checksum":"5sCqgLm4YH/aftQFNEFU9Q==","processDefinitionKey":2251799813690649,"resourceName":"test.bpmn"}],"decisionsMetadata":[],"decisionRequirementsMetadata":[]},"key":2251799813690884,"timestamp":1692328657231,"valueType":"DEPLOYMENT","brokerVersion":"8.2.10","sourceRecordPosition":11581,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11582}
{"partitionId":1,"value":{"resources":[],"processesMetadata":[],"decisionsMetadata":[],"decisionRequirementsMetadata":[]},"key":2251799813690884,"timestamp":1692328657231,"valueType":"DEPLOYMENT","brokerVersion":"8.2.10","sourceRecordPosition":11581,"rejectionType":"NULL_VAL","intent":"FULLY_DISTRIBUTED","rejectionReason":"","recordType":"EVENT","position":11583}

(流程开始)
启动
{"partitionId":1,"value":{"version":1,"bpmnProcessId":"Process_1692093741783","variables":{},"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"startInstructions":[]},"key":2251799813690886,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE_CREATION","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11586}
{"partitionId":1,"value":{"version":1,"elementId":"Process_1692093741783","bpmnProcessId":"Process_1692093741783","bpmnElementType":"PROCESS","flowScopeKey":-1,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690885,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11587}
{"partitionId":1,"value":{"version":1,"elementId":"Process_1692093741783","bpmnProcessId":"Process_1692093741783","bpmnElementType":"PROCESS","flowScopeKey":-1,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690885,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11588}
{"partitionId":1,"value":{"version":1,"elementId":"StartEvent_03363","bpmnProcessId":"Process_1692093741783","bpmnElementType":"START_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690887,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11590}
{"partitionId":1,"value":{"version":1,"elementId":"StartEvent_03363","bpmnProcessId":"Process_1692093741783","bpmnElementType":"START_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690887,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11591}
{"partitionId":1,"value":{"version":1,"elementId":"StartEvent_03363","bpmnProcessId":"Process_1692093741783","bpmnElementType":"START_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690887,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11593}
{"partitionId":1,"value":{"version":1,"elementId":"StartEvent_03363","bpmnProcessId":"Process_1692093741783","bpmnElementType":"START_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690887,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11594}
{"partitionId":1,"value":{"version":1,"elementId":"Flow_1y96xj4","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SEQUENCE_FLOW","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690888,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"SEQUENCE_FLOW_TAKEN","rejectionReason":"","recordType":"EVENT","position":11595}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690889,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11597}
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690889,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690890,"timestamp":1692328780681,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11598}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690889,"timestamp":1692328780681,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11584,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11599}

手动触发完成第1个节点 (key=2251799813690890, elementId=AerialOrthorectification_40796)
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690889,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690890,"timestamp":1692329080949,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"COMPLETED","rejectionReason":"","recordType":"EVENT","position":11601}
{"partitionId":1,"value":{"scopeKey":2251799813690889,"targetElementId":"AerialOrthorectification_40796","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"variables":{}},"key":2251799813690891,"timestamp":1692329080949,"valueType":"PROCESS_EVENT","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"TRIGGERING","rejectionReason":"","recordType":"EVENT","position":11602}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690889,"timestamp":1692329080949,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11604}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690889,"timestamp":1692329080949,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11605}
{"partitionId":1,"value":{"version":1,"elementId":"Flow_0ubstk2","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SEQUENCE_FLOW","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690892,"timestamp":1692329080949,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"SEQUENCE_FLOW_TAKEN","rejectionReason":"","recordType":"EVENT","position":11606}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690893,"timestamp":1692329080949,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11608}
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690893,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690894,"timestamp":1692329080949,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11609}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690893,"timestamp":1692329080949,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11600,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11610}

再次触发完成第2个节点 (key=2251799813690894, elementId=AerialOrthorectification_07312)
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690893,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690894,"timestamp":1692329256717,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"COMPLETED","rejectionReason":"","recordType":"EVENT","position":11612}
{"partitionId":1,"value":{"scopeKey":2251799813690893,"targetElementId":"AerialOrthorectification_07312","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"variables":{}},"key":2251799813690895,"timestamp":1692329256717,"valueType":"PROCESS_EVENT","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"TRIGGERING","rejectionReason":"","recordType":"EVENT","position":11613}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690893,"timestamp":1692329256717,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11615}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690893,"timestamp":1692329256717,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11616}
{"partitionId":1,"value":{"version":1,"elementId":"Flow_0u2feey","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SEQUENCE_FLOW","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690896,"timestamp":1692329256717,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"SEQUENCE_FLOW_TAKEN","rejectionReason":"","recordType":"EVENT","position":11617}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690897,"timestamp":1692329256717,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11619}
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690897,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690898,"timestamp":1692329256717,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11620}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690897,"timestamp":1692329256717,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11611,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11621}

回退到第1个节点 (key=2251799813690898, elementId=AerialOrthorectification_23721)
{"partitionId":1,"value":{"processInstanceKey":2251799813690885,"activateInstructions":[{"elementId":"AerialOrthorectification_40796","variableInstructions":[],"ancestorScopeKey":-1,"ancestorScopeKeys":[2251799813690885]}],"terminateInstructions":[],"ancestorScopeKeys":[2251799813690885]},"key":2251799813690885,"timestamp":1692329408768,"valueType":"PROCESS_INSTANCE_MODIFICATION","brokerVersion":"8.2.10","sourceRecordPosition":11622,"rejectionType":"NULL_VAL","intent":"MODIFIED","rejectionReason":"","recordType":"EVENT","position":11624}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690899,"timestamp":1692329408768,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11622,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11625}
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690899,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690900,"timestamp":1692329408768,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11622,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11626}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690899,"timestamp":1692329408768,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11622,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11627}

再次手动完成第1个节点 (key=2251799813690900, elementId=AerialOrthorectification_40796)
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690899,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690900,"timestamp":1692329572891,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"COMPLETED","rejectionReason":"","recordType":"EVENT","position":11629}
{"partitionId":1,"value":{"scopeKey":2251799813690899,"targetElementId":"AerialOrthorectification_40796","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"variables":{}},"key":2251799813690901,"timestamp":1692329572891,"valueType":"PROCESS_EVENT","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"TRIGGERING","rejectionReason":"","recordType":"EVENT","position":11630}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690899,"timestamp":1692329572891,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11632}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_40796","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690899,"timestamp":1692329572891,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11633}
{"partitionId":1,"value":{"version":1,"elementId":"Flow_0ubstk2","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SEQUENCE_FLOW","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690902,"timestamp":1692329572891,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"SEQUENCE_FLOW_TAKEN","rejectionReason":"","recordType":"EVENT","position":11634}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690903,"timestamp":1692329572891,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11636}
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690903,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690904,"timestamp":1692329572891,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11637}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690903,"timestamp":1692329572891,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11628,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11638}


再次手动完成第2个节点 (key=2251799813690904, elementId=AerialOrthorectification_07312)
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690903,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690904,"timestamp":1692329623335,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"COMPLETED","rejectionReason":"","recordType":"EVENT","position":11640}
{"partitionId":1,"value":{"scopeKey":2251799813690903,"targetElementId":"AerialOrthorectification_07312","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"variables":{}},"key":2251799813690905,"timestamp":1692329623335,"valueType":"PROCESS_EVENT","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"TRIGGERING","rejectionReason":"","recordType":"EVENT","position":11641}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690903,"timestamp":1692329623335,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11643}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_07312","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690903,"timestamp":1692329623335,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11644}
{"partitionId":1,"value":{"version":1,"elementId":"Flow_0u2feey","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SEQUENCE_FLOW","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690906,"timestamp":1692329623335,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"SEQUENCE_FLOW_TAKEN","rejectionReason":"","recordType":"EVENT","position":11645}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690907,"timestamp":1692329623335,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11647}
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690907,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690908,"timestamp":1692329623335,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"CREATED","rejectionReason":"","recordType":"EVENT","position":11648}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690907,"timestamp":1692329623335,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11639,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11649}

手动触发完成最后一个节点 (key=2251799813690908, elementId=AerialOrthorectification_23721)
{"partitionId":1,"value":{"type":"Common","errorMessage":"","customHeaders":{},"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","recurringTime":-1,"retryBackoff":0,"variables":{},"errorCode":"","deadline":-1,"processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"elementInstanceKey":2251799813690907,"worker":"","processDefinitionVersion":1,"retries":0},"key":2251799813690908,"timestamp":1692329693139,"valueType":"JOB","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"COMPLETED","rejectionReason":"","recordType":"EVENT","position":11651}
{"partitionId":1,"value":{"scopeKey":2251799813690907,"targetElementId":"AerialOrthorectification_23721","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"variables":{}},"key":2251799813690909,"timestamp":1692329693139,"valueType":"PROCESS_EVENT","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"TRIGGERING","rejectionReason":"","recordType":"EVENT","position":11652}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690907,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11654}
{"partitionId":1,"value":{"version":1,"elementId":"AerialOrthorectification_23721","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SERVICE_TASK","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690907,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11655}
{"partitionId":1,"value":{"version":1,"elementId":"Flow_1gyk7i4","bpmnProcessId":"Process_1692093741783","bpmnElementType":"SEQUENCE_FLOW","flowScopeKey":2251799813690885,"bpmnEventType":"UNSPECIFIED","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690910,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"SEQUENCE_FLOW_TAKEN","rejectionReason":"","recordType":"EVENT","position":11656}
{"partitionId":1,"value":{"version":1,"elementId":"Event_0t65vba","bpmnProcessId":"Process_1692093741783","bpmnElementType":"END_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690911,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATING","rejectionReason":"","recordType":"EVENT","position":11658}
{"partitionId":1,"value":{"version":1,"elementId":"Event_0t65vba","bpmnProcessId":"Process_1692093741783","bpmnElementType":"END_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690911,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"ELEMENT_ACTIVATED","rejectionReason":"","recordType":"EVENT","position":11659}
{"partitionId":1,"value":{"version":1,"elementId":"Event_0t65vba","bpmnProcessId":"Process_1692093741783","bpmnElementType":"END_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690911,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETING","rejectionReason":"","recordType":"EVENT","position":11660}
{"partitionId":1,"value":{"version":1,"elementId":"Event_0t65vba","bpmnProcessId":"Process_1692093741783","bpmnElementType":"END_EVENT","flowScopeKey":2251799813690885,"bpmnEventType":"NONE","processInstanceKey":2251799813690885,"processDefinitionKey":2251799813690649,"parentProcessInstanceKey":-1,"parentElementInstanceKey":-1},"key":2251799813690911,"timestamp":1692329693139,"valueType":"PROCESS_INSTANCE","brokerVersion":"8.2.10","sourceRecordPosition":11650,"rejectionType":"NULL_VAL","intent":"ELEMENT_COMPLETED","rejectionReason":"","recordType":"EVENT","position":11661}

(流程结束)
posted @   iminifly  阅读(472)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示