conductor Kitchensink示例

一个示例的厨房工作流程,演示了所有模式构造的使用。

定义

{
  "name": "kitchensink",
  "description": "kitchensink workflow", "version": 1, "tasks": [ { "name": "task_1", "taskReferenceName": "task_1", "inputParameters": { "mod": "${workflow.input.mod}", "oddEven": "${workflow.input.oddEven}" }, "type": "SIMPLE" }, { "name": "event_task", "taskReferenceName": "event_0", "inputParameters": { "mod": "${workflow.input.mod}", "oddEven": "${workflow.input.oddEven}" }, "type": "EVENT", "sink": "conductor" }, { "name": "dyntask", "taskReferenceName": "task_2", "inputParameters": { "taskToExecute": "${workflow.input.task2Name}" }, "type": "DYNAMIC", "dynamicTaskNameParam": "taskToExecute" }, { "name": "oddEvenDecision", "taskReferenceName": "oddEvenDecision", "inputParameters": { "oddEven": "${task_2.output.oddEven}" }, "type": "DECISION", "caseValueParam": "oddEven", "decisionCases": { "0": [ { "name": "task_4", "taskReferenceName": "task_4", "inputParameters": { "mod": "${task_2.output.mod}", "oddEven": "${task_2.output.oddEven}" }, "type": "SIMPLE" }, { "name": "dynamic_fanout", "taskReferenceName": "fanout1", "inputParameters": { "dynamicTasks": "${task_4.output.dynamicTasks}", "input": "${task_4.output.inputs}" }, "type": "FORK_JOIN_DYNAMIC", "dynamicForkTasksParam": "dynamicTasks", "dynamicForkTasksInputParamName": "input" }, { "name": "dynamic_join", "taskReferenceName": "join1", "type": "JOIN" } ], "1": [ { "name": "fork_join", "taskReferenceName": "forkx", "type": "FORK_JOIN", "forkTasks": [ [ { "name": "task_10", "taskReferenceName": "task_10", "type": "SIMPLE" }, { "name": "sub_workflow_x", "taskReferenceName": "wf3", "inputParameters": { "mod": "${task_1.output.mod}", "oddEven": "${task_1.output.oddEven}" }, "type": "SUB_WORKFLOW", "subWorkflowParam": { "name": "sub_flow_1", "version": 1 } } ], [ { "name": "task_11", "taskReferenceName": "task_11", "type": "SIMPLE" }, { "name": "sub_workflow_x", "taskReferenceName": "wf4", "inputParameters": { "mod": "${task_1.output.mod}", "oddEven": "${task_1.output.oddEven}" }, "type": "SUB_WORKFLOW", "subWorkflowParam": { "name": "sub_flow_1", "version": 1 } } ] ] }, { "name": "join", "taskReferenceName": "join2", "type": "JOIN", "joinOn": [ "wf3", "wf4" ] } ] } }, { "name": "search_elasticsearch", "taskReferenceName": "get_es_1", "inputParameters": { "http_request": { "uri": "http://localhost:9200/conductor/_search?size=10", "

转载于:https://www.cnblogs.com/mhc-fly/p/7011300.html

你可能感兴趣的:(conductor Kitchensink示例)