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 d2baa1e860 Automated deployment: 
fbecbed7a5f4f0a787fae891869f6018b51e5793
d2baa1e860 is described below

commit d2baa1e860f6e268e38c6cffce377e446811051e
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Nov 27 05:07:03 2025 +0000

    Automated deployment: fbecbed7a5f4f0a787fae891869f6018b51e5793
---
 data/doc/en-us.json                                |   6 +-
 data/doc/zh-cn.json                                |   4 +-
 pages/doc/en-us/dev/architecture/load-balance.json | 123 +++++++++++++++------
 pages/doc/en-us/dev/contribute/join/security.json  |   2 +-
 pages/doc/zh-cn/dev/architecture/load-balance.json | 118 ++++++++++++--------
 pages/doc/zh-cn/dev/contribute/join/security.json  |   2 +-
 python/2.0.5/.buildinfo                            |   2 +-
 python/2.0.6/.buildinfo                            |   2 +-
 python/2.0.7/.buildinfo                            |   2 +-
 python/3.0.0/.buildinfo                            |   2 +-
 python/3.0.1/.buildinfo                            |   2 +-
 python/3.1.0/.buildinfo                            |   2 +-
 python/4.0.0/.buildinfo                            |   2 +-
 python/4.0.1/.buildinfo                            |   2 +-
 python/4.0.2/.buildinfo                            |   2 +-
 python/4.0.3/.buildinfo                            |   2 +-
 python/4.0.4/.buildinfo                            |   2 +-
 python/4.1.0/.buildinfo                            |   2 +-
 python/main/.buildinfo                             |   2 +-
 19 files changed, 176 insertions(+), 105 deletions(-)

diff --git a/data/doc/en-us.json b/data/doc/en-us.json
index 71094d5633..26a2cbf149 100644
--- a/data/doc/en-us.json
+++ b/data/doc/en-us.json
@@ -40959,10 +40959,10 @@
     ]
   },
   {
-    "content": "Load Balance\nLoad balancing refers to the reasonable 
allocation of server pressure through routing algorithms (usually in cluster 
environments) to achieve the maximum optimization of server 
performance.\nDolphinScheduler-Worker Load Balancing 
Algorithms\nDolphinScheduler-Master allocates tasks to workers, and by default 
provides three algorithms:\n\n\nWeighted random (random)\n\n\nSmoothing polling 
(round-robin)\n\n\nLinear load (lower weight)\n\n\nThe default configurat [...]
+    "content": "Load Balancing\nLoad balancing distributes server pressure 
reasonably through routing algorithms (typically in cluster environments) to 
optimize server performance to the maximum extent.\nDolphinScheduler-Worker 
Load Balancing Algorithms\nDolphinScheduler-Master provides four load balancing 
algorithms for distributing tasks to workers:\n\nRandom (RANDOM)\nRound Robin 
(ROUND_ROBIN)\nSmooth Round Robin (FIXED_WEIGHTED_ROUND_ROBIN)\nDynamic Smooth 
Round Robin (DYNAMIC_WEIGHT [...]
     "version": "dev",
     "link": "/architecture/load-balance",
-    "title": "Load Balance",
+    "title": "Load Balancing",
     "location": [
       "Architecture Guide",
       "Load Balance"
@@ -41010,7 +41010,7 @@
     ]
   },
   {
-    "content": "Security\nThe Apache Software Foundation takes a rigorous 
stance on eliminating security issues in its software projects. Apache 
DolphinScheduler is also very concerned Security issues related to its features 
and functionality.\nIf you have apprehensions regarding DolphinScheduler’s 
security or you discover vulnerability or potential threat, don’t hesitate to 
get in touch with the Apache Security Team by dropping a mail at 
[[email protected]]. Please specify the project [...]
+    "content": "Security\nThe Apache Software Foundation takes a rigorous 
stance on eliminating security issues in its software projects. Apache 
DolphinScheduler is also very concerned Security issues related to its features 
and functionality.\nIf you have apprehensions regarding DolphinScheduler’s 
security or you discover vulnerability or potential threat, don’t hesitate to 
get in touch with the Apache Security Team by dropping a mail at 
[[email protected]]. Please sp [...]
     "version": "dev",
     "link": "/contribute/join/security",
     "title": "Security",
diff --git a/data/doc/zh-cn.json b/data/doc/zh-cn.json
index 2fc4453e69..06b032a97c 100644
--- a/data/doc/zh-cn.json
+++ b/data/doc/zh-cn.json
@@ -36567,7 +36567,7 @@
     ]
   },
   {
-    "content": 
"负载均衡\n负载均衡即通过路由算法(通常是集群环境),合理的分摊服务器压力,达到服务器性能的最大优化。\nDolphinScheduler-Worker 
负载均衡算法\nDolphinScheduler-Master 分配任务至 
worker,默认提供了三种算法:\n加权随机(random)\n平滑轮询(roundrobin)\n线性负载(lowerweight)\n默认配置为线性加权负载。\n由于路由是在客户端做的,即
 master 服务,因此你可以更改 master.properties 中的 master.host.selector 
来配置你所想要的算法。\neg:master.host.selector=random(不区分大小写)\nWorker 负载均衡配置\n配置文件 
worker.properties\n权重\n上述所有的负载算法都是基于权重来进行加权分配的,权重影响分流结果。你可以在 修改 worker.weight 
的值来给不同的机器设置不同的权重。\n预热\n考虑到 JIT 优化,我们会让 worker 在启动后低功 [...]
+    "content": 
"负载均衡\n负载均衡即通过路由算法(通常是集群环境),合理的分摊服务器压力,达到服务器性能的最大优化。\nDolphinScheduler-Worker 
负载均衡算法\nDolphinScheduler-Master 分配任务至 worker,提供了四种负载均衡算法:\n\n随机 (RANDOM)\n轮询 
(ROUND_ROBIN)\n平滑轮询 (FIXED_WEIGHTED_ROUND_ROBIN)\n动态平滑轮询 
(DYNAMIC_WEIGHTED_ROUND_ROBIN) - 
默认算法\n\n负载均衡算法配置\n在配置文件中配置负载均衡算法:\n位置:master-server/conf/application.yaml\nworker-load-balancer-configuration-properties:\n
  # 负载均衡算法类型:RANDOM, ROUND_ROBIN, FIXED_WEIGHTED_ROUND_ROBIN, 
DYNAMIC_WEIGHTED_ROUND_ROBIN\n  type: DYNAMIC_W [...]
     "version": "dev",
     "link": "/architecture/load-balance",
     "title": "负载均衡",
@@ -36618,7 +36618,7 @@
     ]
   },
   {
-    "content": "安全\nApache Software Foundation在消除其软件项目中的安全性问题方面采取严格的立场。 Apache 
DolphinScheduler也非常关注与其功能有关的安全性问题。\n如果您对DolphinScheduler的安全性有疑虑,或者发现了漏洞或潜在威胁,请发送邮件至[[email protected]],与Apache安全团队联系。
 请在电子邮件中将项目名称指定为DolphinScheduler,并提供相关问题或潜在威胁的描述。 还敦促您推荐重现和复制问题的方法。 
在评估和分析调查结果之后,apache安全团队和DolphinScheduler社区将与您联系。\n在公共领域公开该安全电子邮件之前,请注意在安全电子邮件中报告该安全问题。\n注意\n在您提交之前,请先按照Apache
 DolphinScheduler安全模型检查该问题是否属于安全漏洞。\n",
+    "content": "安全\nApache Software Foundation在消除其软件项目中的安全性问题方面采取严格的立场。 Apache 
DolphinScheduler也非常关注与其功能有关的安全性问题。\n如果您对DolphinScheduler的安全性有疑虑,或者发现了漏洞或潜在威胁,请发送邮件至[[email protected]],与Apache安全团队联系。
 请在电子邮件中将项目名称指定为DolphinScheduler,并提供相关问题或潜在威胁的描述。 还敦促您推荐重现和复制问题的方法。 
在评估和分析调查结果之后,apache安全团队和DolphinScheduler社区将与您联系。\n在公共领域公开该安全电子邮件之前,请注意在安全电子邮件中报告该安全问题。\n注意\n在您提交之前,请先按照Apache
 DolphinScheduler安全模型检查该问题是否属于安全漏洞。\n",
     "version": "dev",
     "link": "/contribute/join/security",
     "title": "安全",
diff --git a/pages/doc/en-us/dev/architecture/load-balance.json 
b/pages/doc/en-us/dev/architecture/load-balance.json
index f917817cc7..24aad83b4b 100644
--- a/pages/doc/en-us/dev/architecture/load-balance.json
+++ b/pages/doc/en-us/dev/architecture/load-balance.json
@@ -1,5 +1,5 @@
 {
-  "__html": "<h1 id=\"load-balance\">Load Balance</h1>\n<p>Load balancing 
refers to the reasonable allocation of server pressure through routing 
algorithms (usually in cluster environments) to achieve the maximum 
optimization of server performance.</p>\n<h2 
id=\"dolphinscheduler-worker-load-balancing-algorithms\">DolphinScheduler-Worker
 Load Balancing Algorithms</h2>\n<p>DolphinScheduler-Master allocates tasks to 
workers, and by default provides three algorithms:</p>\n<ul>\n<li>\n<p>Weig 
[...]
+  "__html": "<h1 id=\"load-balancing\">Load Balancing</h1>\n<p>Load balancing 
distributes server pressure reasonably through routing algorithms (typically in 
cluster environments) to optimize server performance to the maximum 
extent.</p>\n<h2 
id=\"dolphinscheduler-worker-load-balancing-algorithms\">DolphinScheduler-Worker
 Load Balancing Algorithms</h2>\n<p>DolphinScheduler-Master provides four load 
balancing algorithms for distributing tasks to 
workers:</p>\n<ul>\n<li><strong>Random</str [...]
   "location": [
     "Architecture Guide",
     "Load Balance"
@@ -9,96 +9,147 @@
       "title": "DolphinScheduler-Worker Load Balancing Algorithms",
       "children": [
         {
-          "title": "Weight",
+          "title": "Smooth Round Robin Configuration 
(FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "weight"
+          "anchor": 
"smooth-round-robin-configuration-(fixed_weighted_round_robin)"
         },
         {
-          "title": "Preheating",
+          "title": "Dynamic Smooth Round Robin Configuration 
(DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "preheating"
+          "anchor": 
"dynamic-smooth-round-robin-configuration-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "Random (Weighted)",
+          "title": "Random (RANDOM)",
           "children": [],
-          "anchor": "random-(weighted)"
+          "anchor": "random-(random)"
         },
         {
-          "title": "Smoothed Polling (Weighted)",
+          "title": "Round Robin (ROUND_ROBIN)",
           "children": [],
-          "anchor": "smoothed-polling-(weighted)"
+          "anchor": "round-robin-(round_robin)"
         },
         {
-          "title": "Linear Weighting (Default Algorithm)",
+          "title": "Smooth Round Robin (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "linear-weighting-(default-algorithm)"
+          "anchor": "smooth-round-robin-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "Dynamic Smooth Round Robin (DYNAMIC_WEIGHTED_ROUND_ROBIN) 
- Default Algorithm",
+          "children": [],
+          "anchor": 
"dynamic-smooth-round-robin-(dynamic_weighted_round_robin)---default-algorithm"
         }
       ],
       "anchor": "dolphinscheduler-worker-load-balancing-algorithms"
     },
     {
-      "title": "Worker Load Balancing Configuration",
+      "title": "Load Balancing Configuration",
       "children": [
         {
-          "title": "Weight",
+          "title": "Smooth Round Robin Configuration 
(FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": 
"smooth-round-robin-configuration-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "Dynamic Smooth Round Robin Configuration 
(DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "weight"
+          "anchor": 
"dynamic-smooth-round-robin-configuration-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "Preheating",
+          "title": "Random (RANDOM)",
           "children": [],
-          "anchor": "preheating"
+          "anchor": "random-(random)"
         },
         {
-          "title": "Random (Weighted)",
+          "title": "Round Robin (ROUND_ROBIN)",
           "children": [],
-          "anchor": "random-(weighted)"
+          "anchor": "round-robin-(round_robin)"
         },
         {
-          "title": "Smoothed Polling (Weighted)",
+          "title": "Smooth Round Robin (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "smoothed-polling-(weighted)"
+          "anchor": "smooth-round-robin-(fixed_weighted_round_robin)"
         },
         {
-          "title": "Linear Weighting (Default Algorithm)",
+          "title": "Dynamic Smooth Round Robin (DYNAMIC_WEIGHTED_ROUND_ROBIN) 
- Default Algorithm",
           "children": [],
-          "anchor": "linear-weighting-(default-algorithm)"
+          "anchor": 
"dynamic-smooth-round-robin-(dynamic_weighted_round_robin)---default-algorithm"
         }
       ],
-      "anchor": "worker-load-balancing-configuration"
+      "anchor": "load-balancing-configuration"
     },
     {
-      "title": "Load Balancing Algorithm in Details",
+      "title": "Worker Weight Configuration",
       "children": [
         {
-          "title": "Weight",
+          "title": "Smooth Round Robin Configuration 
(FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": 
"smooth-round-robin-configuration-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "Dynamic Smooth Round Robin Configuration 
(DYNAMIC_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": 
"dynamic-smooth-round-robin-configuration-(dynamic_weighted_round_robin)"
+        },
+        {
+          "title": "Random (RANDOM)",
+          "children": [],
+          "anchor": "random-(random)"
+        },
+        {
+          "title": "Round Robin (ROUND_ROBIN)",
+          "children": [],
+          "anchor": "round-robin-(round_robin)"
+        },
+        {
+          "title": "Smooth Round Robin (FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": "smooth-round-robin-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "Dynamic Smooth Round Robin (DYNAMIC_WEIGHTED_ROUND_ROBIN) 
- Default Algorithm",
+          "children": [],
+          "anchor": 
"dynamic-smooth-round-robin-(dynamic_weighted_round_robin)---default-algorithm"
+        }
+      ],
+      "anchor": "worker-weight-configuration"
+    },
+    {
+      "title": "Load Balancing Algorithm Details",
+      "children": [
+        {
+          "title": "Smooth Round Robin Configuration 
(FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": 
"smooth-round-robin-configuration-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "Dynamic Smooth Round Robin Configuration 
(DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "weight"
+          "anchor": 
"dynamic-smooth-round-robin-configuration-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "Preheating",
+          "title": "Random (RANDOM)",
           "children": [],
-          "anchor": "preheating"
+          "anchor": "random-(random)"
         },
         {
-          "title": "Random (Weighted)",
+          "title": "Round Robin (ROUND_ROBIN)",
           "children": [],
-          "anchor": "random-(weighted)"
+          "anchor": "round-robin-(round_robin)"
         },
         {
-          "title": "Smoothed Polling (Weighted)",
+          "title": "Smooth Round Robin (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "smoothed-polling-(weighted)"
+          "anchor": "smooth-round-robin-(fixed_weighted_round_robin)"
         },
         {
-          "title": "Linear Weighting (Default Algorithm)",
+          "title": "Dynamic Smooth Round Robin (DYNAMIC_WEIGHTED_ROUND_ROBIN) 
- Default Algorithm",
           "children": [],
-          "anchor": "linear-weighting-(default-algorithm)"
+          "anchor": 
"dynamic-smooth-round-robin-(dynamic_weighted_round_robin)---default-algorithm"
         }
       ],
-      "anchor": "load-balancing-algorithm-in-details"
+      "anchor": "load-balancing-algorithm-details"
     }
   ],
-  "title": "Load Balance",
+  "title": "Load Balancing",
   "link": "/architecture/load-balance"
 }
\ No newline at end of file
diff --git a/pages/doc/en-us/dev/contribute/join/security.json 
b/pages/doc/en-us/dev/contribute/join/security.json
index 9d0dc97744..9aaf540732 100644
--- a/pages/doc/en-us/dev/contribute/join/security.json
+++ b/pages/doc/en-us/dev/contribute/join/security.json
@@ -1,5 +1,5 @@
 {
-  "__html": "<h1 id=\"security\">Security</h1>\n<p>The Apache Software 
Foundation takes a rigorous stance on eliminating security issues in its 
software projects. Apache DolphinScheduler is also very concerned Security 
issues related to its features and functionality.</p>\n<p>If you have 
apprehensions regarding DolphinScheduler’s security or you discover 
vulnerability or potential threat, don’t hesitate to get in touch with the 
Apache Security Team by dropping a mail at [security@apache. [...]
+  "__html": "<h1 id=\"security\">Security</h1>\n<p>The Apache Software 
Foundation takes a rigorous stance on eliminating security issues in its 
software projects. Apache DolphinScheduler is also very concerned Security 
issues related to its features and functionality.</p>\n<p>If you have 
apprehensions regarding DolphinScheduler’s security or you discover 
vulnerability or potential threat, don’t hesitate to get in touch with the 
Apache Security Team by dropping a mail at [security@dolphin [...]
   "location": [
     "Contribution",
     "Join",
diff --git a/pages/doc/zh-cn/dev/architecture/load-balance.json 
b/pages/doc/zh-cn/dev/architecture/load-balance.json
index 1bfd338002..d510c5aed0 100644
--- a/pages/doc/zh-cn/dev/architecture/load-balance.json
+++ b/pages/doc/zh-cn/dev/architecture/load-balance.json
@@ -1,133 +1,153 @@
 {
-  "__html": "<h3 
id=\"负载均衡\">负载均衡</h3>\n<p>负载均衡即通过路由算法(通常是集群环境),合理的分摊服务器压力,达到服务器性能的最大优化。</p>\n<h3
 id=\"dolphinscheduler-worker-负载均衡算法\">DolphinScheduler-Worker 
负载均衡算法</h3>\n<p>DolphinScheduler-Master 分配任务至 
worker,默认提供了三种算法:</p>\n<p>加权随机(random)</p>\n<p>平滑轮询(roundrobin)</p>\n<p>线性负载(lowerweight)</p>\n<p>默认配置为线性加权负载。</p>\n<p>由于路由是在客户端做的,即
 master 服务,因此你可以更改 master.properties 中的 master.host.selector 
来配置你所想要的算法。</p>\n<p>eg:master.host.selector=random(不区分大小写)</p>\n<h3 
id=\"worker-负载均衡配置\">Work [...]
+  "__html": "<h1 
id=\"负载均衡\">负载均衡</h1>\n<p>负载均衡即通过路由算法(通常是集群环境),合理的分摊服务器压力,达到服务器性能的最大优化。</p>\n<h2
 id=\"dolphinscheduler-worker-负载均衡算法\">DolphinScheduler-Worker 
负载均衡算法</h2>\n<p>DolphinScheduler-Master 分配任务至 
worker,提供了四种负载均衡算法:</p>\n<ul>\n<li><strong>随机</strong> 
(RANDOM)</li>\n<li><strong>轮询</strong> 
(ROUND_ROBIN)</li>\n<li><strong>平滑轮询</strong> 
(FIXED_WEIGHTED_ROUND_ROBIN)</li>\n<li><strong>动态平滑轮询</strong> 
(DYNAMIC_WEIGHTED_ROUND_ROBIN) - 默认算法</li>\n</ul>\n<h2 
id=\"负载均衡算法配置\">负载均衡算法配置</h2 [...]
   "location": [
     "架构设计",
     "负载均衡"
   ],
   "structure": [
     {
-      "title": "负载均衡",
+      "title": "DolphinScheduler-Worker 负载均衡算法",
       "children": [
         {
-          "title": "权重",
+          "title": "平滑轮询权重配置 (FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": "平滑轮询权重配置-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "动态平滑轮询权重配置 (DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "权重"
+          "anchor": "动态平滑轮询权重配置-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "预热",
+          "title": "随机 (RANDOM)",
           "children": [],
-          "anchor": "预热"
+          "anchor": "随机-(random)"
         },
         {
-          "title": "随机(加权)",
+          "title": "轮询 (ROUND_ROBIN)",
           "children": [],
-          "anchor": "随机(加权)"
+          "anchor": "轮询-(round_robin)"
         },
         {
-          "title": "平滑轮询(加权)",
+          "title": "平滑轮询 (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "平滑轮询(加权)"
+          "anchor": "平滑轮询-(fixed_weighted_round_robin)"
         },
         {
-          "title": "线性加权(默认算法)",
+          "title": "动态平滑轮询 (DYNAMIC_WEIGHTED_ROUND_ROBIN) - 默认算法",
           "children": [],
-          "anchor": "线性加权(默认算法)"
+          "anchor": "动态平滑轮询-(dynamic_weighted_round_robin)---默认算法"
         }
       ],
-      "anchor": "负载均衡"
+      "anchor": "dolphinscheduler-worker-负载均衡算法"
     },
     {
-      "title": "DolphinScheduler-Worker 负载均衡算法",
+      "title": "负载均衡算法配置",
       "children": [
         {
-          "title": "权重",
+          "title": "平滑轮询权重配置 (FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": "平滑轮询权重配置-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "动态平滑轮询权重配置 (DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "权重"
+          "anchor": "动态平滑轮询权重配置-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "预热",
+          "title": "随机 (RANDOM)",
           "children": [],
-          "anchor": "预热"
+          "anchor": "随机-(random)"
         },
         {
-          "title": "随机(加权)",
+          "title": "轮询 (ROUND_ROBIN)",
           "children": [],
-          "anchor": "随机(加权)"
+          "anchor": "轮询-(round_robin)"
         },
         {
-          "title": "平滑轮询(加权)",
+          "title": "平滑轮询 (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "平滑轮询(加权)"
+          "anchor": "平滑轮询-(fixed_weighted_round_robin)"
         },
         {
-          "title": "线性加权(默认算法)",
+          "title": "动态平滑轮询 (DYNAMIC_WEIGHTED_ROUND_ROBIN) - 默认算法",
           "children": [],
-          "anchor": "线性加权(默认算法)"
+          "anchor": "动态平滑轮询-(dynamic_weighted_round_robin)---默认算法"
         }
       ],
-      "anchor": "dolphinscheduler-worker-负载均衡算法"
+      "anchor": "负载均衡算法配置"
     },
     {
-      "title": "Worker 负载均衡配置",
+      "title": "Worker 权重配置",
       "children": [
         {
-          "title": "权重",
+          "title": "平滑轮询权重配置 (FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": "平滑轮询权重配置-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "动态平滑轮询权重配置 (DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "权重"
+          "anchor": "动态平滑轮询权重配置-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "预热",
+          "title": "随机 (RANDOM)",
           "children": [],
-          "anchor": "预热"
+          "anchor": "随机-(random)"
         },
         {
-          "title": "随机(加权)",
+          "title": "轮询 (ROUND_ROBIN)",
           "children": [],
-          "anchor": "随机(加权)"
+          "anchor": "轮询-(round_robin)"
         },
         {
-          "title": "平滑轮询(加权)",
+          "title": "平滑轮询 (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "平滑轮询(加权)"
+          "anchor": "平滑轮询-(fixed_weighted_round_robin)"
         },
         {
-          "title": "线性加权(默认算法)",
+          "title": "动态平滑轮询 (DYNAMIC_WEIGHTED_ROUND_ROBIN) - 默认算法",
           "children": [],
-          "anchor": "线性加权(默认算法)"
+          "anchor": "动态平滑轮询-(dynamic_weighted_round_robin)---默认算法"
         }
       ],
-      "anchor": "worker-负载均衡配置"
+      "anchor": "worker-权重配置"
     },
     {
-      "title": "负载均衡算法细述",
+      "title": "负载均衡算法详解",
       "children": [
         {
-          "title": "权重",
+          "title": "平滑轮询权重配置 (FIXED_WEIGHTED_ROUND_ROBIN)",
+          "children": [],
+          "anchor": "平滑轮询权重配置-(fixed_weighted_round_robin)"
+        },
+        {
+          "title": "动态平滑轮询权重配置 (DYNAMIC_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "权重"
+          "anchor": "动态平滑轮询权重配置-(dynamic_weighted_round_robin)"
         },
         {
-          "title": "预热",
+          "title": "随机 (RANDOM)",
           "children": [],
-          "anchor": "预热"
+          "anchor": "随机-(random)"
         },
         {
-          "title": "随机(加权)",
+          "title": "轮询 (ROUND_ROBIN)",
           "children": [],
-          "anchor": "随机(加权)"
+          "anchor": "轮询-(round_robin)"
         },
         {
-          "title": "平滑轮询(加权)",
+          "title": "平滑轮询 (FIXED_WEIGHTED_ROUND_ROBIN)",
           "children": [],
-          "anchor": "平滑轮询(加权)"
+          "anchor": "平滑轮询-(fixed_weighted_round_robin)"
         },
         {
-          "title": "线性加权(默认算法)",
+          "title": "动态平滑轮询 (DYNAMIC_WEIGHTED_ROUND_ROBIN) - 默认算法",
           "children": [],
-          "anchor": "线性加权(默认算法)"
+          "anchor": "动态平滑轮询-(dynamic_weighted_round_robin)---默认算法"
         }
       ],
-      "anchor": "负载均衡算法细述"
+      "anchor": "负载均衡算法详解"
     }
   ],
   "title": "负载均衡",
diff --git a/pages/doc/zh-cn/dev/contribute/join/security.json 
b/pages/doc/zh-cn/dev/contribute/join/security.json
index 5d51f744d8..59913d92d7 100644
--- a/pages/doc/zh-cn/dev/contribute/join/security.json
+++ b/pages/doc/zh-cn/dev/contribute/join/security.json
@@ -1,5 +1,5 @@
 {
-  "__html": "<h1 id=\"安全\">安全</h1>\n<p>Apache Software 
Foundation在消除其软件项目中的安全性问题方面采取严格的立场。 Apache 
DolphinScheduler也非常关注与其功能有关的安全性问题。</p>\n<p>如果您对DolphinScheduler的安全性有疑虑,或者发现了漏洞或潜在威胁,请发送邮件至[[email protected]],与Apache安全团队联系。
 请在电子邮件中将项目名称指定为DolphinScheduler,并提供相关问题或潜在威胁的描述。 还敦促您推荐重现和复制问题的方法。 
在评估和分析调查结果之后,apache安全团队和DolphinScheduler社区将与您联系。</p>\n<p>在公共领域公开该安全电子邮件之前,请注意在安全电子邮件中报告该安全问题。</p>\n<h2
 id=\"注意\">注意</h2>\n<p>在您提交之前,请先按照Apache DolphinScheduler<a 
href=\"https://github.com/apache/dolph [...]
+  "__html": "<h1 id=\"安全\">安全</h1>\n<p>Apache Software 
Foundation在消除其软件项目中的安全性问题方面采取严格的立场。 Apache 
DolphinScheduler也非常关注与其功能有关的安全性问题。</p>\n<p>如果您对DolphinScheduler的安全性有疑虑,或者发现了漏洞或潜在威胁,请发送邮件至[[email protected]],与Apache安全团队联系。
 请在电子邮件中将项目名称指定为DolphinScheduler,并提供相关问题或潜在威胁的描述。 还敦促您推荐重现和复制问题的方法。 
在评估和分析调查结果之后,apache安全团队和DolphinScheduler社区将与您联系。</p>\n<p>在公共领域公开该安全电子邮件之前,请注意在安全电子邮件中报告该安全问题。</p>\n<h2
 id=\"注意\">注意</h2>\n<p>在您提交之前,请先按照Apache DolphinScheduler<a 
href=\"https://github [...]
   "location": [
     "贡献指南",
     "如何参与",
diff --git a/python/2.0.5/.buildinfo b/python/2.0.5/.buildinfo
index a878c5410d..c241f940e0 100644
--- a/python/2.0.5/.buildinfo
+++ b/python/2.0.5/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 1e7c015a2ffb8920352bbed88744f229
+config: 629caeeb3321a0c56da84c156a7148a5
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/2.0.6/.buildinfo b/python/2.0.6/.buildinfo
index d6e4ea6209..187fc90ae3 100644
--- a/python/2.0.6/.buildinfo
+++ b/python/2.0.6/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: a47cd53e0d12407ee41f2ace850ae412
+config: d3808574d0989f28f298a2adb433216b
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/2.0.7/.buildinfo b/python/2.0.7/.buildinfo
index c59a2dda40..a8a2cb64ef 100644
--- a/python/2.0.7/.buildinfo
+++ b/python/2.0.7/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: ae1af2552f3cc3a177ce1432f9a70ccd
+config: 7d947c4447ac8cf434d5b31681df6ab7
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/3.0.0/.buildinfo b/python/3.0.0/.buildinfo
index afe162bac6..1815297b1b 100644
--- a/python/3.0.0/.buildinfo
+++ b/python/3.0.0/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 959d17ee3c6cc589372fe23807277515
+config: 88f3b3dd31351f4d547acd283a703041
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/3.0.1/.buildinfo b/python/3.0.1/.buildinfo
index 34ba8012c5..dd3c5c17a5 100644
--- a/python/3.0.1/.buildinfo
+++ b/python/3.0.1/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: ec69204fc82c89c2ddbbeee5f1711834
+config: d7c7bbae005402f03addd622bd5b475f
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/3.1.0/.buildinfo b/python/3.1.0/.buildinfo
index d456f1c2b2..286b3207b3 100644
--- a/python/3.1.0/.buildinfo
+++ b/python/3.1.0/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 01195bf44f5e9d14670993e369b7e1c6
+config: 1fe53e7967a657bfbbdb8b25824f1389
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/4.0.0/.buildinfo b/python/4.0.0/.buildinfo
index 70f003d77e..cc446a2307 100644
--- a/python/4.0.0/.buildinfo
+++ b/python/4.0.0/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 596be7b78c124497342e09f3a4eda51f
+config: 6b6f3d489232613a0f423d1d06f4706b
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/4.0.1/.buildinfo b/python/4.0.1/.buildinfo
index a8ae4fb724..70d14d3506 100644
--- a/python/4.0.1/.buildinfo
+++ b/python/4.0.1/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 2913d6ff7484795b6baa5252d8417c13
+config: f5c044da86e4905766947896625d1c2f
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/4.0.2/.buildinfo b/python/4.0.2/.buildinfo
index ec76bc0cab..9e9691d0de 100644
--- a/python/4.0.2/.buildinfo
+++ b/python/4.0.2/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: ff6a93803a5a1d7f5183b929ac84ede0
+config: da05af27690682c5607001be54739aa6
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/4.0.3/.buildinfo b/python/4.0.3/.buildinfo
index 15d5ffb7c0..d89b348f1d 100644
--- a/python/4.0.3/.buildinfo
+++ b/python/4.0.3/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: d4ab748af8cf908ad0553f88eea40e98
+config: 8c0e282f264f525c19cedf5058905fac
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/4.0.4/.buildinfo b/python/4.0.4/.buildinfo
index ff4726dab5..7060ddb109 100644
--- a/python/4.0.4/.buildinfo
+++ b/python/4.0.4/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 3cc984f2e4c6f0fd7a27577c0f8fb54d
+config: 8bfac1981fc37066f8a1dbe84a9ea1cd
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/4.1.0/.buildinfo b/python/4.1.0/.buildinfo
index 3dc1d29e25..9713e91e2f 100644
--- a/python/4.1.0/.buildinfo
+++ b/python/4.1.0/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: cb921ad41dbae5e9224ef65b44a79c1b
+config: 606a544d442bf90584dc4eee8374cfc4
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/python/main/.buildinfo b/python/main/.buildinfo
index f831960774..af16bede2a 100644
--- a/python/main/.buildinfo
+++ b/python/main/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file records the configuration used when building these files. When it 
is not found, a full rebuild will be done.
-config: 97dd158d6cf5b9ff802c05e13e3e8189
+config: eec18dd02e8e5ef2daeafa8a7ccc9d31
 tags: 645f666f9bcd5a90fca523b33c5a78b7

Reply via email to