Browse Source

[fix#12170] If the worker's clock early than master node, will ignore dispatch time. (#12219)

* add doc to guide user configure synchronized clocks.
3.2.0-release
Yann Ann 2 years ago committed by GitHub
parent
commit
1d0d26a416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      docs/docs/en/about/hardware.md
  2. 4
      docs/docs/zh/about/glossary.md
  3. 11
      docs/docs/zh/about/hardware.md

3
docs/docs/en/about/hardware.md

@ -47,3 +47,6 @@ DolphinScheduler provides the following network port configurations for normal o
## Browser Requirements ## Browser Requirements
The minimum supported version of Google Chrome is version 85, but version 90 or above is recommended. The minimum supported version of Google Chrome is version 85, but version 90 or above is recommended.
## Synchronize clocks
To avoid problems with internal cluster communications that can impact your task execution, make sure that the clocks on all of the cluster nodes are synchronized from a common clock source, such as using Chrony and/or NTP. Synchronizing the time ensures that every node in the cluster has the same time.

4
docs/docs/zh/about/glossary.md

@ -2,7 +2,7 @@
在对 Apache DolphinScheduler 了解之前,我们先来认识一下调度系统常用的名词 在对 Apache DolphinScheduler 了解之前,我们先来认识一下调度系统常用的名词
### 1.名词解释 ### 名词解释
**DAG:** 全称 Directed Acyclic Graph,简称 DAG。工作流中的 Task 任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图: **DAG:** 全称 Directed Acyclic Graph,简称 DAG。工作流中的 Task 任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:
@ -31,7 +31,7 @@
**补数**:补历史数据,支持**区间并行**和**串行**两种补数方式,其日期选择方式包括**日期范围**和**日期枚举**两种 **补数**:补历史数据,支持**区间并行**和**串行**两种补数方式,其日期选择方式包括**日期范围**和**日期枚举**两种
### 2.模块介绍 ### 模块介绍
- dolphinscheduler-master master模块,提供工作流管理和编排服务。 - dolphinscheduler-master master模块,提供工作流管理和编排服务。

11
docs/docs/zh/about/hardware.md

@ -2,7 +2,7 @@
DolphinScheduler 作为一款开源分布式工作流任务调度系统,可以很好地部署和运行在 Intel 架构服务器及主流虚拟化环境下,并支持主流的Linux操作系统环境 DolphinScheduler 作为一款开源分布式工作流任务调度系统,可以很好地部署和运行在 Intel 架构服务器及主流虚拟化环境下,并支持主流的Linux操作系统环境
## 1. Linux 操作系统版本要求 ## Linux 操作系统版本要求
| 操作系统 | 版本 | | 操作系统 | 版本 |
|:-------------------------|:---------:| |:-------------------------|:---------:|
@ -14,7 +14,7 @@ DolphinScheduler 作为一款开源分布式工作流任务调度系统,可以
> **注意:** > **注意:**
> 以上 Linux 操作系统可运行在物理服务器以及 VMware、KVM、XEN 主流虚拟化环境上 > 以上 Linux 操作系统可运行在物理服务器以及 VMware、KVM、XEN 主流虚拟化环境上
## 2. 服务器建议配置 ## 服务器建议配置
DolphinScheduler 支持运行在 Intel x86-64 架构的 64 位通用硬件服务器平台。对生产环境的服务器硬件配置有以下建议: DolphinScheduler 支持运行在 Intel x86-64 架构的 64 位通用硬件服务器平台。对生产环境的服务器硬件配置有以下建议:
@ -28,7 +28,7 @@ DolphinScheduler 支持运行在 Intel x86-64 架构的 64 位通用硬件服务
> - 以上建议配置为部署 DolphinScheduler 的最低配置,生产环境强烈推荐使用更高的配置 > - 以上建议配置为部署 DolphinScheduler 的最低配置,生产环境强烈推荐使用更高的配置
> - 硬盘大小配置建议 50GB+ ,系统盘和数据盘分开 > - 硬盘大小配置建议 50GB+ ,系统盘和数据盘分开
## 3. 网络要求 ## 网络要求
DolphinScheduler正常运行提供如下的网络端口配置: DolphinScheduler正常运行提供如下的网络端口配置:
@ -42,6 +42,9 @@ DolphinScheduler正常运行提供如下的网络端口配置:
> - MasterServer 和 WorkerServer 不需要开启网络间通信,只需本机端口不冲突即可 > - MasterServer 和 WorkerServer 不需要开启网络间通信,只需本机端口不冲突即可
> - 管理员可根据实际环境中 DolphinScheduler 组件部署方案,在网络侧和主机侧开放相关端口 > - 管理员可根据实际环境中 DolphinScheduler 组件部署方案,在网络侧和主机侧开放相关端口
## 4. 客户端 Web 浏览器要求 ## 客户端 Web 浏览器要求
DolphinScheduler 推荐 Chrome 以及使用 Chromium 内核的较新版本浏览器访问前端可视化操作界面 DolphinScheduler 推荐 Chrome 以及使用 Chromium 内核的较新版本浏览器访问前端可视化操作界面
## 时钟同步
为避免可能影响任务执行的内部集群通信问题,请确保所有集群节点上的时钟与公共时钟源同步,例如使用 Chrony 和/或 NTP。 同步时间确保集群中的每个节点都有相同的时间
Loading…
Cancel
Save