You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by gi...@apache.org on 2021/12/07 07:50:53 UTC

[dolphinscheduler-website] branch asf-site updated: Automated deployment: f0f95a2b961eb17ed107d312ff4f1082ee6e7f8a

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 4a174fd  Automated deployment: f0f95a2b961eb17ed107d312ff4f1082ee6e7f8a
4a174fd is described below

commit 4a174fd7321d5febf7276e2f8387b04e2a716bc1
Author: github-actions[bot] <gi...@users.noreply.github.com>
AuthorDate: Tue Dec 7 07:50:46 2021 +0000

    Automated deployment: f0f95a2b961eb17ed107d312ff4f1082ee6e7f8a
---
 zh-cn/docs/2.0.0/user_doc/architecture/designplus.html  | 6 +++---
 zh-cn/docs/2.0.0/user_doc/architecture/designplus.json  | 2 +-
 zh-cn/docs/latest/user_doc/architecture/designplus.html | 6 +++---
 zh-cn/docs/latest/user_doc/architecture/designplus.json | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/zh-cn/docs/2.0.0/user_doc/architecture/designplus.html b/zh-cn/docs/2.0.0/user_doc/architecture/designplus.html
index 17c203a..32046bb 100644
--- a/zh-cn/docs/2.0.0/user_doc/architecture/designplus.html
+++ b/zh-cn/docs/2.0.0/user_doc/architecture/designplus.html
@@ -23,10 +23,10 @@
 <p><strong>流程定义</strong>:通过拖拽任务节点并建立任务节点的关联所形成的可视化<strong>DAG</strong></p>
 <p><strong>流程实例</strong>:流程实例是流程定义的实例化,可以通过手动启动或定时调度生成,流程定义每运行一次,产生一个流程实例</p>
 <p><strong>任务实例</strong>:任务实例是流程定义中任务节点的实例化,标识着具体的任务执行状态</p>
-<p><strong>任务类型</strong>: 目前支持有SHELL、SQL、SUB_PROCESS(子流程)、PROCEDURE、MR、SPARK、PYTHON、DEPENDENT(依赖)、,同时计划支持动态插件扩展,注意:其中子 <strong>SUB_PROCESS</strong>
+<p><strong>任务类型</strong>:目前支持有SHELL、SQL、SUB_PROCESS(子流程)、PROCEDURE、MR、SPARK、PYTHON、DEPENDENT(依赖)、,同时计划支持动态插件扩展,注意:其中子 <strong>SUB_PROCESS</strong>
 也是一个单独的流程定义,是可以单独启动执行的</p>
-<p><strong>调度方式:</strong> 系统支持基于cron表达式的定时调度和手动调度。命令类型支持:启动工作流、从当前节点开始执行、恢复被容错的工作流、恢复暂停流程、从失败节点开始执行、补数、定时、重跑、暂停、停止、恢复等待线程。其中 **
-恢复被容错的工作流** 和 <strong>恢复等待线程</strong> 两种命令类型是由调度内部控制使用,外部无法调用</p>
+<p><strong>调度方式</strong>:系统支持基于cron表达式的定时调度和手动调度。命令类型支持:启动工作流、从当前节点开始执行、恢复被容错的工作流、恢复暂停流程、从失败节点开始执行、补数、定时、重跑、暂停、停止、恢复等待线程。
+其中 <strong>恢复被容错的工作流</strong> 和 <strong>恢复等待线程</strong> 两种命令类型是由调度内部控制使用,外部无法调用</p>
 <p><strong>定时调度</strong>:系统采用 <strong>quartz</strong> 分布式调度器,并同时支持cron表达式可视化的生成</p>
 <p><strong>依赖</strong>:系统不单单支持 <strong>DAG</strong> 简单的前驱和后继节点之间的依赖,同时还提供<strong>任务依赖</strong>节点,支持<strong>流程间的自定义任务依赖</strong></p>
 <p><strong>优先级</strong> :支持流程实例和任务实例的优先级,如果流程实例和任务实例的优先级不设置,则默认是先进先出</p>
diff --git a/zh-cn/docs/2.0.0/user_doc/architecture/designplus.json b/zh-cn/docs/2.0.0/user_doc/architecture/designplus.json
index 52662a4..8348ca8 100644
--- a/zh-cn/docs/2.0.0/user_doc/architecture/designplus.json
+++ b/zh-cn/docs/2.0.0/user_doc/architecture/designplus.json
@@ -1,6 +1,6 @@
 {
   "filename": "designplus.md",
-  "__html": "<h2>名词解释</h2>\n<p>在对Apache DolphinScheduler了解之前,我们先来认识一下调度系统常用的名词</p>\n<h3>1.名词解释</h3>\n<p><strong>DAG:</strong> 全称Directed Acyclic Graph,简称DAG。工作流中的Task任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:</p>\n<p align=\"center\">\n  <img src=\"/img/dag_examples_cn.jpg\" alt=\"dag示例\"  width=\"60%\" />\n  <p align=\"center\">\n        <em>dag示例</em>\n  </p>\n</p>\n<p><strong>流程定义</strong>:通过拖拽任务节点并建立任务节点的关联所形成的可视化<strong>DAG</strong></p>\n<p><strong>流程实例</strong>:流程实例是流程定义的实例化,可 [...]
+  "__html": "<h2>名词解释</h2>\n<p>在对Apache DolphinScheduler了解之前,我们先来认识一下调度系统常用的名词</p>\n<h3>1.名词解释</h3>\n<p><strong>DAG:</strong> 全称Directed Acyclic Graph,简称DAG。工作流中的Task任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:</p>\n<p align=\"center\">\n  <img src=\"/img/dag_examples_cn.jpg\" alt=\"dag示例\"  width=\"60%\" />\n  <p align=\"center\">\n        <em>dag示例</em>\n  </p>\n</p>\n<p><strong>流程定义</strong>:通过拖拽任务节点并建立任务节点的关联所形成的可视化<strong>DAG</strong></p>\n<p><strong>流程实例</strong>:流程实例是流程定义的实例化,可 [...]
   "link": "/dist/zh-cn/docs/2.0.0/user_doc/architecture/designplus.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/latest/user_doc/architecture/designplus.html b/zh-cn/docs/latest/user_doc/architecture/designplus.html
index 17c203a..32046bb 100644
--- a/zh-cn/docs/latest/user_doc/architecture/designplus.html
+++ b/zh-cn/docs/latest/user_doc/architecture/designplus.html
@@ -23,10 +23,10 @@
 <p><strong>流程定义</strong>:通过拖拽任务节点并建立任务节点的关联所形成的可视化<strong>DAG</strong></p>
 <p><strong>流程实例</strong>:流程实例是流程定义的实例化,可以通过手动启动或定时调度生成,流程定义每运行一次,产生一个流程实例</p>
 <p><strong>任务实例</strong>:任务实例是流程定义中任务节点的实例化,标识着具体的任务执行状态</p>
-<p><strong>任务类型</strong>: 目前支持有SHELL、SQL、SUB_PROCESS(子流程)、PROCEDURE、MR、SPARK、PYTHON、DEPENDENT(依赖)、,同时计划支持动态插件扩展,注意:其中子 <strong>SUB_PROCESS</strong>
+<p><strong>任务类型</strong>:目前支持有SHELL、SQL、SUB_PROCESS(子流程)、PROCEDURE、MR、SPARK、PYTHON、DEPENDENT(依赖)、,同时计划支持动态插件扩展,注意:其中子 <strong>SUB_PROCESS</strong>
 也是一个单独的流程定义,是可以单独启动执行的</p>
-<p><strong>调度方式:</strong> 系统支持基于cron表达式的定时调度和手动调度。命令类型支持:启动工作流、从当前节点开始执行、恢复被容错的工作流、恢复暂停流程、从失败节点开始执行、补数、定时、重跑、暂停、停止、恢复等待线程。其中 **
-恢复被容错的工作流** 和 <strong>恢复等待线程</strong> 两种命令类型是由调度内部控制使用,外部无法调用</p>
+<p><strong>调度方式</strong>:系统支持基于cron表达式的定时调度和手动调度。命令类型支持:启动工作流、从当前节点开始执行、恢复被容错的工作流、恢复暂停流程、从失败节点开始执行、补数、定时、重跑、暂停、停止、恢复等待线程。
+其中 <strong>恢复被容错的工作流</strong> 和 <strong>恢复等待线程</strong> 两种命令类型是由调度内部控制使用,外部无法调用</p>
 <p><strong>定时调度</strong>:系统采用 <strong>quartz</strong> 分布式调度器,并同时支持cron表达式可视化的生成</p>
 <p><strong>依赖</strong>:系统不单单支持 <strong>DAG</strong> 简单的前驱和后继节点之间的依赖,同时还提供<strong>任务依赖</strong>节点,支持<strong>流程间的自定义任务依赖</strong></p>
 <p><strong>优先级</strong> :支持流程实例和任务实例的优先级,如果流程实例和任务实例的优先级不设置,则默认是先进先出</p>
diff --git a/zh-cn/docs/latest/user_doc/architecture/designplus.json b/zh-cn/docs/latest/user_doc/architecture/designplus.json
index 52662a4..8348ca8 100644
--- a/zh-cn/docs/latest/user_doc/architecture/designplus.json
+++ b/zh-cn/docs/latest/user_doc/architecture/designplus.json
@@ -1,6 +1,6 @@
 {
   "filename": "designplus.md",
-  "__html": "<h2>名词解释</h2>\n<p>在对Apache DolphinScheduler了解之前,我们先来认识一下调度系统常用的名词</p>\n<h3>1.名词解释</h3>\n<p><strong>DAG:</strong> 全称Directed Acyclic Graph,简称DAG。工作流中的Task任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:</p>\n<p align=\"center\">\n  <img src=\"/img/dag_examples_cn.jpg\" alt=\"dag示例\"  width=\"60%\" />\n  <p align=\"center\">\n        <em>dag示例</em>\n  </p>\n</p>\n<p><strong>流程定义</strong>:通过拖拽任务节点并建立任务节点的关联所形成的可视化<strong>DAG</strong></p>\n<p><strong>流程实例</strong>:流程实例是流程定义的实例化,可 [...]
+  "__html": "<h2>名词解释</h2>\n<p>在对Apache DolphinScheduler了解之前,我们先来认识一下调度系统常用的名词</p>\n<h3>1.名词解释</h3>\n<p><strong>DAG:</strong> 全称Directed Acyclic Graph,简称DAG。工作流中的Task任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:</p>\n<p align=\"center\">\n  <img src=\"/img/dag_examples_cn.jpg\" alt=\"dag示例\"  width=\"60%\" />\n  <p align=\"center\">\n        <em>dag示例</em>\n  </p>\n</p>\n<p><strong>流程定义</strong>:通过拖拽任务节点并建立任务节点的关联所形成的可视化<strong>DAG</strong></p>\n<p><strong>流程实例</strong>:流程实例是流程定义的实例化,可 [...]
   "link": "/dist/zh-cn/docs/2.0.0/user_doc/architecture/designplus.html",
   "meta": {}
 }
\ No newline at end of file