From 6095f780e992dca507aa217769590a27704cf3da Mon Sep 17 00:00:00 2001 From: daihw <928874202@qq.com> Date: Wed, 5 Jan 2022 17:05:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=86=85=E7=BD=AE?= =?UTF-8?q?=E8=BE=93=E5=87=BA=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guide/custom-node.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/guide/custom-node.md b/guide/custom-node.md index c18e8d8..3e11cb9 100644 --- a/guide/custom-node.md +++ b/guide/custom-node.md @@ -186,4 +186,14 @@ pipeline: ### 3. 内置输入参数 -share_dir: 共享目录,容器中可通过 JM_SHARE_DIR 使用 +| 关键字 | 说明 | +| -------------------------------- | ---------------------------------------------------------------------------------------------- | +| share_dir | 共享目录,容器中可通过 JM_SHARE_DIR 使用 | + +### 4. 内置输出参数 + +| 关键字 | 说明 | +| -------------------------------- | ---------------------------------------------------------------------------------------------- | +| inner.execution_status | 节点任务执行状态,可在下游节点通过`${xxx.inner.execution_status}`调用,`v2.1.2`版本开始支持。取值范围为:
EXECUTION_SUCCEEDED: 执行成功
EXECUTION_FAILED: 执行失败
DISPATCH_FAILED: 分发失败 | + + -- Gitee