You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dolphinscheduler.apache.org by gi...@apache.org on 2019/11/07 03:17:06 UTC

[incubator-dolphinscheduler-website] branch asf-site updated: Automated deployment: Thu Nov 7 03:16:54 UTC 2019 3bc5b415300176021669c0cf396f0b6f46321617

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/incubator-dolphinscheduler-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new a553bfc  Automated deployment: Thu Nov  7 03:16:54 UTC 2019 3bc5b415300176021669c0cf396f0b6f46321617
a553bfc is described below

commit a553bfc7b938f44c26714f61bd41adf86b51107c
Author: dailidong <da...@users.noreply.github.com>
AuthorDate: Thu Nov 7 03:16:54 2019 +0000

    Automated deployment: Thu Nov  7 03:16:54 UTC 2019 3bc5b415300176021669c0cf396f0b6f46321617
---
 .../docs/developer_guide/architecture-design.html  | 16 ++---
 .../docs/developer_guide/architecture-design.json  |  2 +-
 .../docs/developer_guide/backend-development.html  | 14 ++---
 .../docs/developer_guide/backend-development.json  |  2 +-
 .../docs/developer_guide/frontend-development.html |  8 +--
 .../docs/developer_guide/frontend-development.json |  2 +-
 en-us/docs/faq.html                                | 26 ++++----
 en-us/docs/faq.json                                |  2 +-
 en-us/docs/release/note.html                       |  2 +-
 en-us/docs/release/note.json                       |  2 +-
 en-us/docs/release/upgrade.html                    |  8 +--
 en-us/docs/release/upgrade.json                    |  2 +-
 en-us/docs/user_doc/backend-deployment.html        | 72 +++++++++++-----------
 en-us/docs/user_doc/backend-deployment.json        |  2 +-
 en-us/docs/user_doc/frontend-deployment.html       | 10 +--
 en-us/docs/user_doc/frontend-deployment.json       |  2 +-
 en-us/docs/user_doc/quick-start.html               |  2 +-
 en-us/docs/user_doc/quick-start.json               |  2 +-
 en-us/docs/user_doc/system-manual.html             |  4 +-
 en-us/docs/user_doc/system-manual.json             |  2 +-
 .../docs/developer_guide/architecture-design.html  | 16 ++---
 .../docs/developer_guide/architecture-design.json  |  2 +-
 .../docs/developer_guide/backend-development.html  | 10 +--
 .../docs/developer_guide/backend-development.json  |  2 +-
 .../docs/developer_guide/frontend-development.html | 10 +--
 .../docs/developer_guide/frontend-development.json |  2 +-
 zh-cn/docs/developer_guide/plugin-development.html | 12 ++--
 zh-cn/docs/developer_guide/plugin-development.json |  2 +-
 zh-cn/docs/faq.html                                | 35 +++++------
 zh-cn/docs/faq.json                                |  2 +-
 zh-cn/docs/release/note.html                       |  2 +-
 zh-cn/docs/release/note.json                       |  2 +-
 zh-cn/docs/release/upgrade.html                    |  6 +-
 zh-cn/docs/release/upgrade.json                    |  2 +-
 zh-cn/docs/user_doc/backend-deployment.html        | 70 ++++++++++-----------
 zh-cn/docs/user_doc/backend-deployment.json        |  2 +-
 zh-cn/docs/user_doc/frontend-deployment.html       | 10 +--
 zh-cn/docs/user_doc/frontend-deployment.json       |  2 +-
 zh-cn/docs/user_doc/quick-start.html               |  2 +-
 zh-cn/docs/user_doc/quick-start.json               |  2 +-
 40 files changed, 185 insertions(+), 190 deletions(-)

diff --git a/en-us/docs/developer_guide/architecture-design.html b/en-us/docs/developer_guide/architecture-design.html
index f7691c0..19da3e5 100644
--- a/en-us/docs/developer_guide/architecture-design.html
+++ b/en-us/docs/developer_guide/architecture-design.html
@@ -77,7 +77,7 @@ When the MasterServer service starts, it registers a temporary node with Zookeep
 <li>
 <p><strong>ZooKeeper</strong></p>
 <p>The ZooKeeper service, the MasterServer and the WorkerServer nodes in the system all use the ZooKeeper for cluster management and fault tolerance. In addition, the system also performs event monitoring and distributed locking based on ZooKeeper.
-We have also implemented queues based on Redis, but we hope that EasyScheduler relies on as few components as possible, so we finally removed the Redis implementation.</p>
+We have also implemented queues based on Redis, but we hope that DolphinScheduler relies on as few components as possible, so we finally removed the Redis implementation.</p>
 </li>
 <li>
 <p><strong>Task Queue</strong></p>
@@ -130,11 +130,11 @@ Interfaces include workflow creation, definition, query, modification, release,
 <p>In fact, truly decentralized distributed systems are rare. Instead, dynamic centralized distributed systems are constantly emerging. Under this architecture, the managers in the cluster are dynamically selected, rather than preset, and when the cluster fails, the nodes of the cluster will spontaneously hold &quot;meetings&quot; to elect new &quot;managers&quot;. Go to preside over the work. The most typical case is the Etcd implemented in ZooKeeper and Go.</p>
 </li>
 <li>
-<p>Decentralization of EasyScheduler is the registration of Master/Worker to ZooKeeper. The Master Cluster and the Worker Cluster are not centered, and the Zookeeper distributed lock is used to elect one Master or Worker as the “manager” to perform the task.</p>
+<p>Decentralization of DolphinScheduler is the registration of Master/Worker to ZooKeeper. The Master Cluster and the Worker Cluster are not centered, and the Zookeeper distributed lock is used to elect one Master or Worker as the “manager” to perform the task.</p>
 </li>
 </ul>
 <h5>二、Distributed lock practice</h5>
-<p>EasyScheduler uses ZooKeeper distributed locks to implement only one Master to execute the Scheduler at the same time, or only one Worker to perform task submission.</p>
+<p>DolphinScheduler uses ZooKeeper distributed locks to implement only one Master to execute the Scheduler at the same time, or only one Worker to perform task submission.</p>
 <ol>
 <li>The core process algorithm for obtaining distributed locks is as follows</li>
 </ol>
@@ -142,7 +142,7 @@ Interfaces include workflow creation, definition, query, modification, release,
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/distributed_lock.png" alt="Get Distributed Lock Process" width="50%" />
  </p>
 <ol start="2">
-<li>Scheduler thread distributed lock implementation flow chart in EasyScheduler:</li>
+<li>Scheduler thread distributed lock implementation flow chart in DolphinScheduler:</li>
 </ol>
  <p align="center">
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/distributed_lock_procss.png" alt="Get Distributed Lock Process" width="50%" />
@@ -169,7 +169,7 @@ Interfaces include workflow creation, definition, query, modification, release,
 <h6>1. Downtime fault tolerance</h6>
 <p>Service fault tolerance design relies on ZooKeeper's Watcher mechanism. The implementation principle is as follows:</p>
  <p align="center">
-   <img src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant.png" alt="EasyScheduler Fault Tolerant Design" width="40%" />
+   <img src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant.png" alt="DolphinScheduler Fault Tolerant Design" width="40%" />
  </p>
 <p>The Master monitors the directories of other Masters and Workers. If the remove event is detected, the process instance is fault-tolerant or the task instance is fault-tolerant according to the specific business logic.</p>
 <ul>
@@ -178,7 +178,7 @@ Interfaces include workflow creation, definition, query, modification, release,
  <p align="center">
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant_master.png" alt="Master Fault Tolerance Flowchart" width="40%" />
  </p>
-<p>After the ZooKeeper Master is fault-tolerant, it is rescheduled by the Scheduler thread in EasyScheduler. It traverses the DAG to find the &quot;Running&quot; and &quot;Submit Successful&quot; tasks, and monitors the status of its task instance for the &quot;Running&quot; task. You need to determine whether the Task Queue already exists. If it exists, monitor the status of the task instance. If it does not exist, resubmit the task instance.</p>
+<p>After the ZooKeeper Master is fault-tolerant, it is rescheduled by the Scheduler thread in DolphinScheduler. It traverses the DAG to find the &quot;Running&quot; and &quot;Submit Successful&quot; tasks, and monitors the status of its task instance for the &quot;Running&quot; task. You need to determine whether the Task Queue already exists. If it exists, monitor the status of the task instance. If it does not exist, resubmit the task instance.</p>
 <ul>
 <li>Worker fault tolerance flow chart:</li>
 </ul>
@@ -235,7 +235,7 @@ Interfaces include workflow creation, definition, query, modification, release,
 <li>Obtain remote log information through gRPC communication</li>
 </ul>
 </li>
-<li>Considering the lightweightness of EasyScheduler as much as possible, gRPC was chosen to implement remote access log information.</li>
+<li>Considering the lightweightness of DolphinScheduler as much as possible, gRPC was chosen to implement remote access log information.</li>
 </ul>
  <p align="center">
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/grpc.png" alt="grpc remote access" width="50%" />
@@ -288,7 +288,7 @@ Public <span class="hljs-class"><span class="hljs-keyword">class</span> <span cl
 }
 </code></pre>
 <h3>summary</h3>
-<p>Starting from the scheduling, this paper introduces the architecture principle and implementation ideas of the big data distributed workflow scheduling system-EasyScheduler. To be continued</p>
+<p>Starting from the scheduling, this paper introduces the architecture principle and implementation ideas of the big data distributed workflow scheduling system-DolphinScheduler. To be continued</p>
 </div></section><footer class="footer-container"><div class="footer-body"><img src="/img/ds_gray.svg"/><div class="cols-container"><div class="col col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. 
 Incubation is required of all newly accepted projects until a further review indicates 
 that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. 
diff --git a/en-us/docs/developer_guide/architecture-design.json b/en-us/docs/developer_guide/architecture-design.json
index 64c3833..c67c8bc 100644
--- a/en-us/docs/developer_guide/architecture-design.json
+++ b/en-us/docs/developer_guide/architecture-design.json
@@ -1,6 +1,6 @@
 {
   "filename": "architecture-design.md",
-  "__html": "<h2>Architecture Design</h2>\n<p>Before explaining the architecture of the schedule system, let us first understand the common nouns of the schedule system.</p>\n<h3>1.Noun Interpretation</h3>\n<p><strong>DAG:</strong> Full name Directed Acyclic Graph,referred to as DAG。Tasks in the workflow are assembled in the form of directed acyclic graphs, which are topologically traversed from nodes with zero indegrees of ingress until there are no successor nodes. For example, the fol [...]
+  "__html": "<h2>Architecture Design</h2>\n<p>Before explaining the architecture of the schedule system, let us first understand the common nouns of the schedule system.</p>\n<h3>1.Noun Interpretation</h3>\n<p><strong>DAG:</strong> Full name Directed Acyclic Graph,referred to as DAG。Tasks in the workflow are assembled in the form of directed acyclic graphs, which are topologically traversed from nodes with zero indegrees of ingress until there are no successor nodes. For example, the fol [...]
   "link": "/en-us/docs/developer_guide/architecture-design.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/developer_guide/backend-development.html b/en-us/docs/developer_guide/backend-development.html
index 34b12bf..113f828 100644
--- a/en-us/docs/developer_guide/backend-development.html
+++ b/en-us/docs/developer_guide/backend-development.html
@@ -15,16 +15,16 @@
 	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">中</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-norm [...]
 <h2>Environmental requirements</h2>
 <ul>
-<li><a href="http://geek.analysys.cn/topic/124">Mysql</a> (5.5+) :  Must be installed</li>
-<li><a href="https://www.oracle.com/technetwork/java/javase/downloads/index.html">JDK</a> (1.8+) :  Must be installed</li>
-<li><a href="https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper">ZooKeeper</a>(3.4.6+) :Must be installed</li>
-<li><a href="http://maven.apache.org/download.cgi">Maven</a>(3.3+) :Must be installed</li>
+<li>Mysql (5.5+) :  Must be installed</li>
+<li>JDK (1.8+) :  Must be installed</li>
+<li>ZooKeeper (3.4.6+) :Must be installed</li>
+<li>Maven (3.3+) :Must be installed</li>
 </ul>
-<p>Because the escheduler-rpc module in EasyScheduler uses Grpc, you need to use Maven to compile the generated classes.
+<p>Because the dolphinscheduler-rpc module in DolphinScheduler uses Grpc, you need to use Maven to compile the generated classes.
 For those who are not familiar with maven, please refer to: <a href="http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html">maven in five minutes</a>(3.3+)</p>
 <p><a href="http://maven.apache.org/install.html">http://maven.apache.org/install.html</a></p>
 <h2>Project compilation</h2>
-<p>After importing the EasyScheduler source code into the development tools such as Idea, first convert to the Maven project (right click and select &quot;Add Framework Support&quot;)</p>
+<p>After importing the DolphinScheduler source code into the development tools such as Idea, first convert to the Maven project (right click and select &quot;Add Framework Support&quot;)</p>
 <ul>
 <li>Execute the compile command:</li>
 </ul>
@@ -33,7 +33,7 @@ For those who are not familiar with maven, please refer to: <a href="http://mave
 <ul>
 <li>View directory</li>
 </ul>
-<p>After normal compilation, it will generate ./target/escheduler-{version}/ in the current directory.</p>
+<p>After normal compilation, it will generate ./target/dolphinscheduler-{version}/ in the current directory.</p>
 <pre><code>    bin
     conf
     lib
diff --git a/en-us/docs/developer_guide/backend-development.json b/en-us/docs/developer_guide/backend-development.json
index a810caa..a41902e 100644
--- a/en-us/docs/developer_guide/backend-development.json
+++ b/en-us/docs/developer_guide/backend-development.json
@@ -1,6 +1,6 @@
 {
   "filename": "backend-development.md",
-  "__html": "<h1>Backend development documentation</h1>\n<h2>Environmental requirements</h2>\n<ul>\n<li><a href=\"http://geek.analysys.cn/topic/124\">Mysql</a> (5.5+) :  Must be installed</li>\n<li><a href=\"https://www.oracle.com/technetwork/java/javase/downloads/index.html\">JDK</a> (1.8+) :  Must be installed</li>\n<li><a href=\"https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper\">ZooKeeper</a>(3.4.6+) :Must be installed</li>\n<li><a href=\"http://maven.apache.org/download.cgi\">Ma [...]
+  "__html": "<h1>Backend development documentation</h1>\n<h2>Environmental requirements</h2>\n<ul>\n<li>Mysql (5.5+) :  Must be installed</li>\n<li>JDK (1.8+) :  Must be installed</li>\n<li>ZooKeeper (3.4.6+) :Must be installed</li>\n<li>Maven (3.3+) :Must be installed</li>\n</ul>\n<p>Because the dolphinscheduler-rpc module in DolphinScheduler uses Grpc, you need to use Maven to compile the generated classes.\nFor those who are not familiar with maven, please refer to: <a href=\"http://m [...]
   "link": "/en-us/docs/developer_guide/backend-development.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/developer_guide/frontend-development.html b/en-us/docs/developer_guide/frontend-development.html
index 6ff683b..a7fc995 100644
--- a/en-us/docs/developer_guide/frontend-development.html
+++ b/en-us/docs/developer_guide/frontend-development.html
@@ -38,7 +38,7 @@ Lodash high performance JavaScript utility library
 <h4>Front-end project construction</h4>
 </li>
 </ul>
-<p>Use the command line mode <code>cd</code>  enter the <code>escheduler-ui</code> project directory and execute <code>npm install</code> to pull the project dependency package.</p>
+<p>Use the command line mode <code>cd</code>  enter the <code>dolphinscheduler-ui</code> project directory and execute <code>npm install</code> to pull the project dependency package.</p>
 <blockquote>
 <p>If <code>npm install</code> is very slow</p>
 </blockquote>
@@ -51,7 +51,7 @@ Lodash high performance JavaScript utility library
 <ul>
 <li>Create a new <code>.env</code>  file or the interface that interacts with the backend</li>
 </ul>
-<p>Create a new<code>.env</code> file in the <code>escheduler-ui</code>directory, add the ip address and port of the backend service to the file, and use it to interact with the backend. The contents of the<code>.env</code> file are as follows:</p>
+<p>Create a new<code>.env</code> file in the <code>dolphinscheduler-ui</code>directory, add the ip address and port of the backend service to the file, and use it to interact with the backend. The contents of the<code>.env</code> file are as follows:</p>
 <pre><code># Proxy interface address (modified by yourself)
 API_BASE = http://192.168.xx.xx:12345
 
@@ -78,7 +78,7 @@ API_BASE = http://192.168.xx.xx:12345
 <p>Visit address<code>http://localhost:8888/#/</code></p>
 <h4>Start with node and daemon under Linux</h4>
 <p>Install pm2 <code>npm install -g pm2</code></p>
-<p>Execute <code>pm2 start npm -- run dev</code> to start the project in the project <code>escheduler-ui</code>root directory</p>
+<p>Execute <code>pm2 start npm -- run dev</code> to start the project in the project <code>dolphinscheduler-ui</code>root directory</p>
 <h4>command</h4>
 <ul>
 <li>
@@ -95,7 +95,7 @@ API_BASE = http://192.168.xx.xx:12345
 </li>
 </ul>
 <pre><code>
-[root@localhost escheduler-ui]# pm2 start npm -- run dev
+[root@localhost dolphinscheduler-ui]# pm2 start npm -- run dev
 [PM2] Applying action restartProcessId on app [npm](ids: 0)
 [PM2] [npm](0) ✓
 [PM2] Process successfully started
diff --git a/en-us/docs/developer_guide/frontend-development.json b/en-us/docs/developer_guide/frontend-development.json
index f069391..462bba7 100644
--- a/en-us/docs/developer_guide/frontend-development.json
+++ b/en-us/docs/developer_guide/frontend-development.json
@@ -1,6 +1,6 @@
 {
   "filename": "frontend-development.md",
-  "__html": "<h1>Front-end development documentation</h1>\n<h3>Technical selection</h3>\n<pre><code>Vue mvvm framework\n\nEs6 ECMAScript 6.0\n\nAns-ui Analysys-ui\n\nD3  Visual Library Chart Library\n\nJsplumb connection plugin library\n\nLodash high performance JavaScript utility library\n</code></pre>\n<h3>Development environment</h3>\n<ul>\n<li>\n<h4>Node installation</h4>\n</li>\n</ul>\n<p>Node package download (note version 8.9.4) <code>https://nodejs.org/download/release/v8.9.4/</c [...]
+  "__html": "<h1>Front-end development documentation</h1>\n<h3>Technical selection</h3>\n<pre><code>Vue mvvm framework\n\nEs6 ECMAScript 6.0\n\nAns-ui Analysys-ui\n\nD3  Visual Library Chart Library\n\nJsplumb connection plugin library\n\nLodash high performance JavaScript utility library\n</code></pre>\n<h3>Development environment</h3>\n<ul>\n<li>\n<h4>Node installation</h4>\n</li>\n</ul>\n<p>Node package download (note version 8.9.4) <code>https://nodejs.org/download/release/v8.9.4/</c [...]
   "link": "/en-us/docs/developer_guide/frontend-development.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/faq.html b/en-us/docs/faq.html
index 087106b..a281ccb 100644
--- a/en-us/docs/faq.html
+++ b/en-us/docs/faq.html
@@ -12,8 +12,8 @@
 	<link rel="stylesheet" href="/build/documentation.css" />
 </head>
 <body>
-	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">中</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-norm [...]
-<p>A: EasyScheduler consists of 5 services, MasterServer, WorkerServer, ApiServer, AlertServer, LoggerServer and UI.</p>
+	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">中</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-norm [...]
+<p>A: DolphinScheduler consists of 5 services, MasterServer, WorkerServer, ApiServer, AlertServer, LoggerServer and UI.</p>
 <table>
 <thead>
 <tr>
@@ -64,27 +64,27 @@
 <h2>Q: Priority of the task</h2>
 <p>A: We also support <strong>the priority of processes and tasks</strong>. Priority We have five levels of <strong>HIGHEST, HIGH, MEDIUM, LOW and LOWEST</strong>. <strong>You can set the priority between different process instances, or you can set the priority of different task instances in the same process instance.</strong> For details, please refer to the task priority design in the architecture-design.</p>
 <hr>
-<h2>Q: Escheduler-grpc gives an error</h2>
+<h2>Q: dolphinscheduler-grpc gives an error</h2>
 <p>A: Execute in the root directory: mvn -U clean package assembly:assembly -Dmaven.test.skip=true , then refresh the entire project</p>
 <hr>
-<h2>Q: Does EasyScheduler support running on windows?</h2>
+<h2>Q: Does DolphinScheduler support running on windows?</h2>
 <p>A: In theory, <strong>only the Worker needs to run on Linux</strong>. Other services can run normally on Windows. But it is still recommended to deploy on Linux.</p>
 <hr>
 <h2>Q: UI compiles node-sass prompt in linux: Error: EACCESS: permission denied, mkdir xxxx</h2>
 <p>A: Install <strong>npm install node-sass --unsafe-perm</strong> separately, then <strong>npm install</strong></p>
 <hr>
 <h2>Q: UI cannot log in normally.</h2>
-<p>A: 1, if it is node startup, check whether the .env API_BASE configuration under escheduler-ui is the Api Server service address.</p>
-<pre><code>2, If it is nginx booted and installed via **install-escheduler-ui.sh**, check if the proxy_pass configuration in **/etc/nginx/conf.d/escheduler.conf** is the Api Server service. address
+<p>A: 1, if it is node startup, check whether the .env API_BASE configuration under dolphinscheduler-ui is the Api Server service address.</p>
+<pre><code>2, If it is nginx booted and installed via **install-dolphinscheduler-ui.sh**, check if the proxy_pass configuration in **/etc/nginx/conf.d/dolphinscheduler.conf** is the Api Server service. address
 
- 3, if the above configuration is correct, then please check if the Api Server service is normal, curl http://192.168.xx.xx:12345/escheduler/users/get-user-info, check the Api Server log, if Prompt cn.escheduler.api.interceptor.LoginHandlerInterceptor:[76] - session info is null, which proves that the Api Server service is normal.
+ 3, if the above configuration is correct, then please check if the Api Server service is normal, curl http://192.168.xx.xx:12345/dolphinscheduler/users/get-user-info, check the Api Server log, if Prompt cn.dolphinscheduler.api.interceptor.LoginHandlerInterceptor:[76] - session info is null, which proves that the Api Server service is normal.
 
 4, if there is no problem above, you need to check if **server.context-path and server.port configuration** in **application.properties** is correct
 </code></pre>
 <hr>
 <h2>Q: After the process definition is manually started or scheduled, no process instance is generated.</h2>
 <p>A:   1, first <strong>check whether the MasterServer service exists through jps</strong>, or directly check whether there is a master service in zk from the service monitoring.</p>
-<p>​       2,If there is a master service, check <strong>the command status statistics</strong> or whether new records are added in <strong>t_escheduler_error_command</strong>. If it is added, <strong>please check the message field.</strong></p>
+<p>​       2,If there is a master service, check <strong>the command status statistics</strong> or whether new records are added in <strong>t_ds_error_command</strong>. If it is added, <strong>please check the message field.</strong></p>
 <hr>
 <h2>Q : The task status is always in the successful submission status.</h2>
 <p>A:   1, <strong>first check whether the WorkerServer service exists through jps</strong>, or directly check whether there is a worker service in zk from the service monitoring.</p>
@@ -98,8 +98,8 @@
 <hr>
 <h2>Q : Need to pay attention to the problem in <a href="http://install.sh">install.sh</a></h2>
 <p>A:   1, if the replacement variable contains special characters, <strong>use the \ transfer character to transfer</strong></p>
-<p>​       2, installPath=&quot;/data1_1T/escheduler&quot;, <strong>this directory can not be the same as the <a href="http://install.sh">install.sh</a> directory currently installed with one click.</strong></p>
-<p>​       3, deployUser = &quot;escheduler&quot;, <strong>the deployment user must have sudo privileges</strong>, because the worker is executed by sudo -u tenant sh xxx.command</p>
+<p>​       2, installPath=&quot;/data1_1T/dolphinscheduler&quot;, <strong>this directory can not be the same as the <a href="http://install.sh">install.sh</a> directory currently installed with one click.</strong></p>
+<p>​       3, deployUser = &quot;dolphinscheduler&quot;, <strong>the deployment user must have sudo privileges</strong>, because the worker is executed by sudo -u tenant sh xxx.command</p>
 <p>​       4, monitorServerState = &quot;false&quot;, whether the service monitoring script is started, the default is not to start the service monitoring script. <strong>If the service monitoring script is started, the master and worker services are monitored every 5 minutes, and if the machine is down, it will automatically restart.</strong></p>
 <p>​       5, hdfsStartupSate=&quot;false&quot;, whether to enable HDFS resource upload function. The default is not enabled. <strong>If it is not enabled, the resource center cannot be used.</strong> If enabled, you need to configure the configuration of fs.defaultFS and yarn in conf/common/hadoop/hadoop.properties. If you use namenode HA, you need to copy core-site.xml and hdfs-site.xml to the conf root directory.</p>
 <p>​    Note: <strong>The 1.0.x version does not automatically create the hdfs root directory, you need to create it yourself, and you need to deploy the user with hdfs operation permission.</strong></p>
@@ -151,7 +151,7 @@
 <p>​       3, process definition <strong>view or edit</strong> the DAG page, any <strong>task node right click</strong> Start process definition.</p>
 <p>​       4, you can define DAG editing for the process, set the running flag of some tasks to <strong>prohibit running</strong>, when the process definition is started, the connection of the node will be removed from the DAG.</p>
 <h2>Q : Python task setting Python version</h2>
-<p>A:  1,<strong>for the version after 1.0.3</strong> only need to modify PYTHON_HOME in conf/env/.escheduler_env.sh</p>
+<p>A:  1,<strong>for the version after 1.0.3</strong> only need to modify PYTHON_HOME in conf/env/.dolphinscheduler_env.sh</p>
 <pre><code>export PYTHON_HOME=/bin/python
 </code></pre>
 <p>Note: This is <strong>PYTHON_HOME</strong> , which is the absolute path of the python command, not the simple PYTHON_HOME. Also note that when exporting the PATH, you need to directly</p>
@@ -160,8 +160,8 @@
 <p>​	2,For versions prior to 1.0.3, the Python task only supports the Python version of the system. It does not support specifying the Python version.</p>
 <h2>Q:Worker Task will generate a child process through sudo -u tenant sh xxx.command, will kill when kill</h2>
 <p>A:  We will add the kill task in 1.0.4 and kill all the various child processes generated by the task.</p>
-<h2>Q : How to use the queue in EasyScheduler, what does the user queue and tenant queue mean?</h2>
-<p>A : The queue in the EasyScheduler can be configured on the user or the tenant. <strong>The priority of the queue specified by the user is higher than the priority of the tenant queue.</strong> For example, to specify a queue for an MR task, the queue is specified by mapreduce.job.queuename.</p>
+<h2>Q : How to use the queue in DolphinScheduler, what does the user queue and tenant queue mean?</h2>
+<p>A : The queue in the DolphinScheduler can be configured on the user or the tenant. <strong>The priority of the queue specified by the user is higher than the priority of the tenant queue.</strong> For example, to specify a queue for an MR task, the queue is specified by mapreduce.job.queuename.</p>
 <p>Note: When using the above method to specify the queue, the MR uses the following methods:</p>
 <pre><code>	Configuration conf = new Configuration();
         GenericOptionsParser optionParser = new GenericOptionsParser(conf, args);
diff --git a/en-us/docs/faq.json b/en-us/docs/faq.json
index 0d6cd2d..dcb215d 100644
--- a/en-us/docs/faq.json
+++ b/en-us/docs/faq.json
@@ -1,6 +1,6 @@
 {
   "filename": "faq.md",
-  "__html": "<h2>Q: EasyScheduler service introduction and recommended running memory</h2>\n<p>A: EasyScheduler consists of 5 services, MasterServer, WorkerServer, ApiServer, AlertServer, LoggerServer and UI.</p>\n<table>\n<thead>\n<tr>\n<th>Service</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MasterServer</td>\n<td>Mainly responsible for DAG segmentation and task status monitoring</td>\n</tr>\n<tr>\n<td>WorkerServer/LoggerServer</td>\n<td>Mainly responsible for the su [...]
+  "__html": "<h2>Q: DolphinScheduler service introduction and recommended running memory</h2>\n<p>A: DolphinScheduler consists of 5 services, MasterServer, WorkerServer, ApiServer, AlertServer, LoggerServer and UI.</p>\n<table>\n<thead>\n<tr>\n<th>Service</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MasterServer</td>\n<td>Mainly responsible for DAG segmentation and task status monitoring</td>\n</tr>\n<tr>\n<td>WorkerServer/LoggerServer</td>\n<td>Mainly responsible for  [...]
   "link": "/en-us/docs/faq.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/release/note.html b/en-us/docs/release/note.html
index e44b75d..7e40795 100644
--- a/en-us/docs/release/note.html
+++ b/en-us/docs/release/note.html
@@ -13,7 +13,7 @@
 </head>
 <body>
 	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">中</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-norm [...]
-<p>Both Easy Scheduler 1.1.0 and pre-1.1.0 versions are not Apache versions.</p>
+<p>Both DolphinScheduler 1.1.0 and pre-1.1.0 versions are not Apache versions.</p>
 </div></section><footer class="footer-container"><div class="footer-body"><img src="/img/ds_gray.svg"/><div class="cols-container"><div class="col col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. 
 Incubation is required of all newly accepted projects until a further review indicates 
 that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. 
diff --git a/en-us/docs/release/note.json b/en-us/docs/release/note.json
index e51afa4..648b921 100644
--- a/en-us/docs/release/note.json
+++ b/en-us/docs/release/note.json
@@ -1,6 +1,6 @@
 {
   "filename": "note.md",
-  "__html": "<h1>Note</h1>\n<p>Both Easy Scheduler 1.1.0 and pre-1.1.0 versions are not Apache versions.</p>\n",
+  "__html": "<h1>Note</h1>\n<p>Both DolphinScheduler 1.1.0 and pre-1.1.0 versions are not Apache versions.</p>\n",
   "link": "/en-us/docs/release/note.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/release/upgrade.html b/en-us/docs/release/upgrade.html
index 9f76fdd..0192fe1 100644
--- a/en-us/docs/release/upgrade.html
+++ b/en-us/docs/release/upgrade.html
@@ -12,13 +12,13 @@
 	<link rel="stylesheet" href="/build/documentation.css" />
 </head>
 <body>
-	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">中</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-norm [...]
+	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">中</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-norm [...]
 <h2>1. Back up the previous version of the files and database</h2>
-<h2>2. Stop all services of escheduler</h2>
+<h2>2. Stop all services of dolphinscheduler</h2>
 <p><code>sh ./script/stop-all.sh</code></p>
 <h2>3. Download the new version of the installation package</h2>
 <ul>
-<li><a href="https://gitee.com/easyscheduler/EasyScheduler/attach_files">gitee</a>, download the latest version of the front and back installation packages (backend referred to as escheduler-backend, front end referred to as escheduler-ui)</li>
+<li><a href="https://github.com/apache/incubator-dolphinscheduler/releases">github</a>, download the latest version of the front and back installation packages (backend referred to as dolphinscheduler-backend, front end referred to as dolphinscheduler-ui)</li>
 <li>The following upgrade operations need to be performed in the new version of the directory</li>
 </ul>
 <h2>4. Database upgrade</h2>
@@ -32,7 +32,7 @@
 <ul>
 <li>Execute database upgrade script</li>
 </ul>
-<p><code>sh ./script/upgrade-escheduler.sh</code></p>
+<p><code>sh ./script/upgrade-dolphinscheduler.sh</code></p>
 <h2>5. Backend service upgrade</h2>
 <ul>
 <li>
diff --git a/en-us/docs/release/upgrade.json b/en-us/docs/release/upgrade.json
index afd2f0d..9bedc81 100644
--- a/en-us/docs/release/upgrade.json
+++ b/en-us/docs/release/upgrade.json
@@ -1,6 +1,6 @@
 {
   "filename": "upgrade.md",
-  "__html": "<h1>EasyScheduler upgrade documentation</h1>\n<h2>1. Back up the previous version of the files and database</h2>\n<h2>2. Stop all services of escheduler</h2>\n<p><code>sh ./script/stop-all.sh</code></p>\n<h2>3. Download the new version of the installation package</h2>\n<ul>\n<li><a href=\"https://gitee.com/easyscheduler/EasyScheduler/attach_files\">gitee</a>, download the latest version of the front and back installation packages (backend referred to as escheduler-backend, f [...]
+  "__html": "<h1>DolphinScheduler upgrade documentation</h1>\n<h2>1. Back up the previous version of the files and database</h2>\n<h2>2. Stop all services of dolphinscheduler</h2>\n<p><code>sh ./script/stop-all.sh</code></p>\n<h2>3. Download the new version of the installation package</h2>\n<ul>\n<li><a href=\"https://github.com/apache/incubator-dolphinscheduler/releases\">github</a>, download the latest version of the front and back installation packages (backend referred to as dolphins [...]
   "link": "/en-us/docs/release/upgrade.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/user_doc/backend-deployment.html b/en-us/docs/user_doc/backend-deployment.html
index 96e3fc9..5025a01 100644
--- a/en-us/docs/user_doc/backend-deployment.html
+++ b/en-us/docs/user_doc/backend-deployment.html
@@ -19,18 +19,18 @@
 <li>source code compile and then deployment</li>
 </ul>
 <h2>Preparations</h2>
-<p>Download the latest version of the installation package, download address: <a href="https://gitee.com/easyscheduler/EasyScheduler/attach_files/">gitee download</a> or <a href="https://github.com/analysys/EasyScheduler/releases">github download</a>, download escheduler-backend-x.x.x.tar.gz(back-end referred to as escheduler-backend),escheduler-ui-x.x.x.tar.gz(front-end referred to as escheduler-ui)</p>
+<p>Download the latest version of the installation package, download address:  <a href="https://github.com/apache/incubator-dolphinscheduler/releases">github download</a>, download dolphinscheduler-backend-x.x.x.tar.gz(back-end referred to as dolphinscheduler-backend),dolphinscheduler-ui-x.x.x.tar.gz(front-end referred to as dolphinscheduler-ui)</p>
 <h4>Preparations 1: Installation of basic software (self-installation of required items)</h4>
 <ul>
-<li><a href="http://geek.analysys.cn/topic/124">Mysql</a> (5.5+) :  Mandatory</li>
-<li><a href="https://www.oracle.com/technetwork/java/javase/downloads/index.html">JDK</a> (1.8+) :  Mandatory</li>
-<li><a href="https://www.jianshu.com/p/de90172ea680">ZooKeeper</a>(3.4.6+) :Mandatory</li>
-<li><a href="https://blog.csdn.net/Evankaka/article/details/51612437">Hadoop</a>(2.6+) :Optionally, if you need to use the resource upload function, MapReduce task submission needs to configure Hadoop (uploaded resource files are currently stored on Hdfs)</li>
-<li><a href="https://staroon.pro/2017/12/09/HiveInstall/">Hive</a>(1.2.1) :   Optional, hive task submission needs to be installed</li>
+<li>Mysql (5.5+) :  Mandatory</li>
+<li>JDK (1.8+) :  Mandatory</li>
+<li>ZooKeeper(3.4.6+) :Mandatory</li>
+<li>Hadoop (2.6+) :Optionally, if you need to use the resource upload function, MapReduce task submission needs to configure Hadoop (uploaded resource files are currently stored on Hdfs)</li>
+<li>Hive (1.2.1) :   Optional, hive task submission needs to be installed</li>
 <li>Spark(1.x,2.x) :  Optional, Spark task submission needs to be installed</li>
 <li>PostgreSQL(8.2.15+) : Optional, PostgreSQL PostgreSQL stored procedures need to be installed</li>
 </ul>
-<pre><code> Note: Easy Scheduler itself does not rely on Hadoop, Hive, Spark, PostgreSQL, but only calls their Client to run the corresponding tasks.
+<pre><code> Note: DolphinScheduler itself does not rely on Hadoop, Hive, Spark, PostgreSQL, but only calls their Client to run the corresponding tasks.
 </code></pre>
 <h4>Preparations 2: Create deployment users</h4>
 <ul>
@@ -38,25 +38,25 @@
 </ul>
 <pre><code>vi /etc/sudoers
 
-# For example, the deployment user is an escheduler account
-escheduler  ALL=(ALL)       NOPASSWD: NOPASSWD: ALL
+# For example, the deployment user is an dolphinscheduler account
+dolphinscheduler  ALL=(ALL)       NOPASSWD: NOPASSWD: ALL
 
 # And you need to comment out the Default requiretty line
 #Default requiretty
 </code></pre>
 <h4>Preparations 3: SSH Secret-Free Configuration</h4>
-<p>Configure SSH secret-free login on deployment machines and other installation machines. If you want to install easyscheduler on deployment machines, you need to configure native password-free login itself.</p>
+<p>Configure SSH secret-free login on deployment machines and other installation machines. If you want to install dolphinscheduler on deployment machines, you need to configure native password-free login itself.</p>
 <ul>
-<li><a href="http://geek.analysys.cn/topic/113">Connect the host and other machines SSH</a></li>
+<li>Connect the host and other machines SSH</li>
 </ul>
 <h4>Preparations 4: database initialization</h4>
 <ul>
 <li>
 <p>Create databases and accounts</p>
 <p>Execute the following command to create database and account</p>
-<pre><code>CREATE DATABASE escheduler DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
-GRANT ALL PRIVILEGES ON escheduler.* TO '{user}'@'%' IDENTIFIED BY '{password}';
-GRANT ALL PRIVILEGES ON escheduler.* TO '{user}'@'localhost' IDENTIFIED BY '{password}';
+<pre><code>CREATE DATABASE dolphinscheduler DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
+GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'%' IDENTIFIED BY '{password}';
+GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'localhost' IDENTIFIED BY '{password}';
 flush privileges;
 </code></pre>
 </li>
@@ -68,12 +68,12 @@ Modify the following attributes in ./conf/dao/data_source.properties</p>
     spring.datasource.password
 </code></pre>
 <p>Execute scripts for creating tables and importing basic data</p>
-<pre><code>sh ./script/create-escheduler.sh
+<pre><code>sh ./script/create-dolphinscheduler.sh
 </code></pre>
 </li>
 </ul>
 <h4>Preparations 5: Modify the deployment directory permissions and operation parameters</h4>
-<pre><code> instruction of escheduler-backend directory 
+<pre><code> instruction of dolphinscheduler-backend directory 
 </code></pre>
 <pre><code class="language-directory">bin : Basic service startup script
 conf : Project Profile
@@ -84,11 +84,11 @@ install.sh :  One-click deployment script
 </code></pre>
 <ul>
 <li>
-<p>Modify permissions (please modify the 'deployUser' to the corresponding deployment user) so that the deployment user has operational privileges on the escheduler-backend directory</p>
-<p><code>sudo chown -R deployUser:deployUser escheduler-backend</code></p>
+<p>Modify permissions (please modify the 'deployUser' to the corresponding deployment user) so that the deployment user has operational privileges on the dolphinscheduler-backend directory</p>
+<p><code>sudo chown -R deployUser:deployUser dolphinscheduler-backend</code></p>
 </li>
 <li>
-<p>Modify the <code>.escheduler_env.sh</code> environment variable in the conf/env/directory</p>
+<p>Modify the <code>.dolphinscheduler_env.sh</code> environment variable in the conf/env/directory</p>
 </li>
 <li>
 <p>Modify deployment parameters (depending on your server and business situation):</p>
@@ -131,11 +131,11 @@ Change the variable to 'true' if you want to use hdfs, you also need to create t
 <p>If all services are normal, the automatic deployment is successful</p>
 <p>After successful deployment, the log can be viewed and stored in a specified folder.</p>
 <pre><code class="language-logPath"> logs/
-    ├── escheduler-alert-server.log
-    ├── escheduler-master-server.log
-    |—— escheduler-worker-server.log
-    |—— escheduler-api-server.log
-    |—— escheduler-logger-server.log
+    ├── dolphinscheduler-alert-server.log
+    ├── dolphinscheduler-master-server.log
+    |—— dolphinscheduler-worker-server.log
+    |—— dolphinscheduler-api-server.log
+    |—— dolphinscheduler-logger-server.log
 </code></pre>
 <h3>Compile source code to deploy</h3>
 <p>After downloading the release version of the source package, unzip it into the root directory</p>
@@ -147,7 +147,7 @@ Change the variable to 'true' if you want to use hdfs, you also need to create t
 <ul>
 <li>View directory</li>
 </ul>
-<p>After normal compilation, ./target/escheduler-{version}/ is generated in the current directory</p>
+<p>After normal compilation, ./target/dolphinscheduler-{version}/ is generated in the current directory</p>
 <h3>Start-and-stop services commonly used in systems (for service purposes, please refer to System Architecture Design for details)</h3>
 <ul>
 <li>
@@ -162,36 +162,36 @@ Change the variable to 'true' if you want to use hdfs, you also need to create t
 <p>start and stop one master server</p>
 </li>
 </ul>
-<pre><code class="language-master">sh ./bin/escheduler-daemon.sh start master-server
-sh ./bin/escheduler-daemon.sh stop master-server
+<pre><code class="language-master">sh ./bin/dolphinscheduler-daemon.sh start master-server
+sh ./bin/dolphinscheduler-daemon.sh stop master-server
 </code></pre>
 <ul>
 <li>start and stop one worker server</li>
 </ul>
-<pre><code class="language-worker">sh ./bin/escheduler-daemon.sh start worker-server
-sh ./bin/escheduler-daemon.sh stop worker-server
+<pre><code class="language-worker">sh ./bin/dolphinscheduler-daemon.sh start worker-server
+sh ./bin/dolphinscheduler-daemon.sh stop worker-server
 </code></pre>
 <ul>
 <li>start and stop api server</li>
 </ul>
-<pre><code class="language-Api">sh ./bin/escheduler-daemon.sh start api-server
-sh ./bin/escheduler-daemon.sh stop api-server
+<pre><code class="language-Api">sh ./bin/dolphinscheduler-daemon.sh start api-server
+sh ./bin/dolphinscheduler-daemon.sh stop api-server
 </code></pre>
 <ul>
 <li>start and stop logger server</li>
 </ul>
-<pre><code class="language-Logger">sh ./bin/escheduler-daemon.sh start logger-server
-sh ./bin/escheduler-daemon.sh stop logger-server
+<pre><code class="language-Logger">sh ./bin/dolphinscheduler-daemon.sh start logger-server
+sh ./bin/dolphinscheduler-daemon.sh stop logger-server
 </code></pre>
 <ul>
 <li>start and stop alert server</li>
 </ul>
-<pre><code class="language-Alert">sh ./bin/escheduler-daemon.sh start alert-server
-sh ./bin/escheduler-daemon.sh stop alert-server
+<pre><code class="language-Alert">sh ./bin/dolphinscheduler-daemon.sh start alert-server
+sh ./bin/dolphinscheduler-daemon.sh stop alert-server
 </code></pre>
 <h2>Database Upgrade</h2>
 <p>Database upgrade is a function added in version 1.0.2. The database can be upgraded automatically by executing the following command:</p>
-<pre><code class="language-upgrade">sh ./script/upgrade-escheduler.sh
+<pre><code class="language-upgrade">sh ./script/upgrade-dolphinscheduler.sh
 </code></pre>
 </div></section><footer class="footer-container"><div class="footer-body"><img src="/img/ds_gray.svg"/><div class="cols-container"><div class="col col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. 
 Incubation is required of all newly accepted projects until a further review indicates 
diff --git a/en-us/docs/user_doc/backend-deployment.json b/en-us/docs/user_doc/backend-deployment.json
index 5e6c157..7f9134c 100644
--- a/en-us/docs/user_doc/backend-deployment.json
+++ b/en-us/docs/user_doc/backend-deployment.json
@@ -1,6 +1,6 @@
 {
   "filename": "backend-deployment.md",
-  "__html": "<h1>Backend Deployment Document</h1>\n<p>There are two deployment modes for the backend:</p>\n<ul>\n<li>automatic deployment</li>\n<li>source code compile and then deployment</li>\n</ul>\n<h2>Preparations</h2>\n<p>Download the latest version of the installation package, download address: <a href=\"https://gitee.com/easyscheduler/EasyScheduler/attach_files/\">gitee download</a> or <a href=\"https://github.com/analysys/EasyScheduler/releases\">github download</a>, download esc [...]
+  "__html": "<h1>Backend Deployment Document</h1>\n<p>There are two deployment modes for the backend:</p>\n<ul>\n<li>automatic deployment</li>\n<li>source code compile and then deployment</li>\n</ul>\n<h2>Preparations</h2>\n<p>Download the latest version of the installation package, download address:  <a href=\"https://github.com/apache/incubator-dolphinscheduler/releases\">github download</a>, download dolphinscheduler-backend-x.x.x.tar.gz(back-end referred to as dolphinscheduler-backen [...]
   "link": "/en-us/docs/user_doc/backend-deployment.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/user_doc/frontend-deployment.html b/en-us/docs/user_doc/frontend-deployment.html
index 3b7d131..36beeb6 100644
--- a/en-us/docs/user_doc/frontend-deployment.html
+++ b/en-us/docs/user_doc/frontend-deployment.html
@@ -16,12 +16,12 @@
 <p>The front-end has three deployment modes: automated deployment, manual deployment and compiled source deployment.</p>
 <h2>Preparations</h2>
 <h4>Download the installation package</h4>
-<p>Please download the latest version of the installation package, download address: <a href="https://gitee.com/easyscheduler/EasyScheduler/attach_files/">gitee</a></p>
-<p>After downloading escheduler-ui-x.x.x.tar.gz,decompress<code>tar -zxvf escheduler-ui-x.x.x.tar.gz ./</code>and enter the<code>escheduler-ui</code>directory</p>
+<p>Please download the latest version of the installation package, download address: <a href="https://github.com/apache/incubator-dolphinscheduler/releases">github download</a></p>
+<p>After downloading dolphinscheduler-ui-x.x.x.tar.gz,decompress<code>tar -zxvf dolphinscheduler-ui-x.x.x.tar.gz ./</code>and enter the<code>dolphinscheduler-ui</code>directory</p>
 <h2>Deployment</h2>
 <p>Automated deployment is recommended for either of the following two ways</p>
 <h3>Automated Deployment</h3>
-<p>Edit the installation file<code>vi install-escheduler-ui.sh</code> in the<code>escheduler-ui</code> directory</p>
+<p>Edit the installation file<code>vi install-dolphinscheduler-ui.sh</code> in the<code>dolphinscheduler-ui</code> directory</p>
 <p>Change the front-end access port and the back-end proxy interface address</p>
 <pre><code># Configure the front-end access port
 esc_proxy=&quot;8888&quot;
@@ -32,7 +32,7 @@ esc_proxy_port=&quot;http://192.168.xx.xx:12345&quot;
 <blockquote>
 <p>Front-end automatic deployment based on Linux system <code>yum</code> operation, before deployment, please install and update<code>yum</code></p>
 </blockquote>
-<p>under this directory, execute<code>./install-escheduler-ui.sh</code></p>
+<p>under this directory, execute<code>./install-dolphinscheduler-ui.sh</code></p>
 <h3>Manual Deployment</h3>
 <p>Install epel source <code>yum install epel-release -y</code></p>
 <p>Install Nginx <code>yum install nginx -y</code></p>
@@ -53,7 +53,7 @@ esc_proxy_port=&quot;http://192.168.xx.xx:12345&quot;
         root   /xx/dist; # the dist directory address decompressed by the front end above (self-modifying)
         index  index.html index.html;
     }
-    location /escheduler {
+    location /dolphinscheduler {
         proxy_pass http://192.168.xx.xx:12345; # interface address (self-modifying)
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
diff --git a/en-us/docs/user_doc/frontend-deployment.json b/en-us/docs/user_doc/frontend-deployment.json
index c0e2875..cc12b4e 100644
--- a/en-us/docs/user_doc/frontend-deployment.json
+++ b/en-us/docs/user_doc/frontend-deployment.json
@@ -1,6 +1,6 @@
 {
   "filename": "frontend-deployment.md",
-  "__html": "<h1>frontend-deployment</h1>\n<p>The front-end has three deployment modes: automated deployment, manual deployment and compiled source deployment.</p>\n<h2>Preparations</h2>\n<h4>Download the installation package</h4>\n<p>Please download the latest version of the installation package, download address: <a href=\"https://gitee.com/easyscheduler/EasyScheduler/attach_files/\">gitee</a></p>\n<p>After downloading escheduler-ui-x.x.x.tar.gz,decompress<code>tar -zxvf escheduler-ui- [...]
+  "__html": "<h1>frontend-deployment</h1>\n<p>The front-end has three deployment modes: automated deployment, manual deployment and compiled source deployment.</p>\n<h2>Preparations</h2>\n<h4>Download the installation package</h4>\n<p>Please download the latest version of the installation package, download address: <a href=\"https://github.com/apache/incubator-dolphinscheduler/releases\">github download</a></p>\n<p>After downloading dolphinscheduler-ui-x.x.x.tar.gz,decompress<code>tar -z [...]
   "link": "/en-us/docs/user_doc/frontend-deployment.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/user_doc/quick-start.html b/en-us/docs/user_doc/quick-start.html
index ddd3b52..7d11e65 100644
--- a/en-us/docs/user_doc/quick-start.html
+++ b/en-us/docs/user_doc/quick-start.html
@@ -17,7 +17,7 @@
 <li>
 <p>Administrator user login</p>
 <blockquote>
-<p>Address:192.168.xx.xx:8888  Username and password:admin/escheduler123</p>
+<p>Address:192.168.xx.xx:8888  Username and password:admin/dolphinscheduler123</p>
 </blockquote>
 </li>
 </ul>
diff --git a/en-us/docs/user_doc/quick-start.json b/en-us/docs/user_doc/quick-start.json
index 0cd3427..08b3559 100644
--- a/en-us/docs/user_doc/quick-start.json
+++ b/en-us/docs/user_doc/quick-start.json
@@ -1,6 +1,6 @@
 {
   "filename": "quick-start.md",
-  "__html": "<h1>Quick Start</h1>\n<ul>\n<li>\n<p>Administrator user login</p>\n<blockquote>\n<p>Address:192.168.xx.xx:8888  Username and password:admin/escheduler123</p>\n</blockquote>\n</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://user-images.githubusercontent.com/48329107/61701549-ee738000-ad70-11e9-8d75-87ce04a0152f.png\" width=\"60%\" />\n </p>\n<ul>\n<li>Create queue</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://user-images.githubusercontent.com/48329107/6170 [...]
+  "__html": "<h1>Quick Start</h1>\n<ul>\n<li>\n<p>Administrator user login</p>\n<blockquote>\n<p>Address:192.168.xx.xx:8888  Username and password:admin/dolphinscheduler123</p>\n</blockquote>\n</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://user-images.githubusercontent.com/48329107/61701549-ee738000-ad70-11e9-8d75-87ce04a0152f.png\" width=\"60%\" />\n </p>\n<ul>\n<li>Create queue</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://user-images.githubusercontent.com/4832910 [...]
   "link": "/en-us/docs/user_doc/quick-start.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/en-us/docs/user_doc/system-manual.html b/en-us/docs/user_doc/system-manual.html
index cd4d1b3..330a6df 100644
--- a/en-us/docs/user_doc/system-manual.html
+++ b/en-us/docs/user_doc/system-manual.html
@@ -341,7 +341,7 @@ conf/common/hadoop.properties
 <h2>Security</h2>
 <ul>
 <li>The security has the functions of queue management, tenant management, user management, warning group management, worker group manager, token manage and other functions. It can also authorize resources, data sources, projects, etc.</li>
-<li>Administrator login, default username password: admin/escheduler 123</li>
+<li>Administrator login, default username password: admin/dolphinscheduler 123</li>
 </ul>
 <h3>Create queues</h3>
 <ul>
@@ -403,7 +403,7 @@ conf/common/hadoop.properties
         CloseableHttpClient httpclient = HttpClients.createDefault();
 
         // create http post request
-        HttpPost httpPost = new HttpPost(&quot;http://127.0.0.1:12345/escheduler/projects/create&quot;);
+        HttpPost httpPost = new HttpPost(&quot;http://127.0.0.1:12345/dolphinscheduler/projects/create&quot;);
         httpPost.setHeader(&quot;token&quot;, &quot;123&quot;);
         // set parameters
         List&lt;NameValuePair&gt; parameters = new ArrayList&lt;NameValuePair&gt;();
diff --git a/en-us/docs/user_doc/system-manual.json b/en-us/docs/user_doc/system-manual.json
index 4aa9897..e3b0250 100644
--- a/en-us/docs/user_doc/system-manual.json
+++ b/en-us/docs/user_doc/system-manual.json
@@ -1,6 +1,6 @@
 {
   "filename": "system-manual.md",
-  "__html": "<h1>System Use Manual</h1>\n<h2>Operational Guidelines</h2>\n<h3>Create a project</h3>\n<ul>\n<li>Click &quot;Project - &gt; Create Project&quot;, enter project name,  description, and click &quot;Submit&quot; to create a new project.</li>\n<li>Click on the project name to enter the project home page.</li>\n</ul>\n<p align=\"center\">\n      <img src=\"https://user-images.githubusercontent.com/53217792/61776719-2ee50380-ae2e-11e9-9d11-41de8907efb5.png\" width=\"60%\" />\n </ [...]
+  "__html": "<h1>System Use Manual</h1>\n<h2>Operational Guidelines</h2>\n<h3>Create a project</h3>\n<ul>\n<li>Click &quot;Project - &gt; Create Project&quot;, enter project name,  description, and click &quot;Submit&quot; to create a new project.</li>\n<li>Click on the project name to enter the project home page.</li>\n</ul>\n<p align=\"center\">\n      <img src=\"https://user-images.githubusercontent.com/53217792/61776719-2ee50380-ae2e-11e9-9d11-41de8907efb5.png\" width=\"60%\" />\n </ [...]
   "link": "/en-us/docs/user_doc/system-manual.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/developer_guide/architecture-design.html b/zh-cn/docs/developer_guide/architecture-design.html
index 2c4b372..dc4b29e 100644
--- a/zh-cn/docs/developer_guide/architecture-design.html
+++ b/zh-cn/docs/developer_guide/architecture-design.html
@@ -79,7 +79,7 @@ MasterServer服务启动时向Zookeeper注册临时节点,通过监听Zookeepe
 <li>
 <p><strong>ZooKeeper</strong></p>
 <p>ZooKeeper服务,系统中的MasterServer和WorkerServer节点都通过ZooKeeper来进行集群管理和容错。另外系统还基于ZooKeeper进行事件监听和分布式锁。
-我们也曾经基于Redis实现过队列,不过我们希望EasyScheduler依赖到的组件尽量地少,所以最后还是去掉了Redis实现。</p>
+我们也曾经基于Redis实现过队列,不过我们希望DolphinScheduler依赖到的组件尽量地少,所以最后还是去掉了Redis实现。</p>
 </li>
 <li>
 <p><strong>Task Queue</strong></p>
@@ -130,11 +130,11 @@ MasterServer服务启动时向Zookeeper注册临时节点,通过监听Zookeepe
 <p>实际上,真正去中心化的分布式系统并不多见。反而动态中心化分布式系统正在不断涌出。在这种架构下,集群中的管理者是被动态选择出来的,而不是预置的,并且集群在发生故障的时候,集群的节点会自发的举行&quot;会议&quot;来选举新的&quot;管理者&quot;去主持工作。最典型的案例就是ZooKeeper及Go语言实现的Etcd。</p>
 </li>
 <li>
-<p>EasyScheduler的去中心化是Master/Worker注册到Zookeeper中,实现Master集群和Worker集群无中心,并使用Zookeeper分布式锁来选举其中的一台Master或Worker为“管理者”来执行任务。</p>
+<p>DolphinScheduler的去中心化是Master/Worker注册到Zookeeper中,实现Master集群和Worker集群无中心,并使用Zookeeper分布式锁来选举其中的一台Master或Worker为“管理者”来执行任务。</p>
 </li>
 </ul>
 <h5>二、分布式锁实践</h5>
-<p>EasyScheduler使用ZooKeeper分布式锁来实现同一时刻只有一台Master执行Scheduler,或者只有一台Worker执行任务的提交。</p>
+<p>DolphinScheduler使用ZooKeeper分布式锁来实现同一时刻只有一台Master执行Scheduler,或者只有一台Worker执行任务的提交。</p>
 <ol>
 <li>获取分布式锁的核心流程算法如下</li>
 </ol>
@@ -142,7 +142,7 @@ MasterServer服务启动时向Zookeeper注册临时节点,通过监听Zookeepe
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/distributed_lock.png" alt="获取分布式锁流程"  width="50%" />
  </p>
 <ol start="2">
-<li>EasyScheduler中Scheduler线程分布式锁实现流程图:</li>
+<li>DolphinScheduler中Scheduler线程分布式锁实现流程图:</li>
 </ol>
  <p align="center">
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/distributed_lock_procss.png" alt="获取分布式锁流程"  width="50%" />
@@ -169,7 +169,7 @@ MasterServer服务启动时向Zookeeper注册临时节点,通过监听Zookeepe
 <h6>1. 宕机容错</h6>
 <p>服务容错设计依赖于ZooKeeper的Watcher机制,实现原理如图:</p>
  <p align="center">
-   <img src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant.png" alt="EasyScheduler容错设计"  width="40%" />
+   <img src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant.png" alt="DolphinScheduler容错设计"  width="40%" />
  </p>
 其中Master监控其他Master和Worker的目录,如果监听到remove事件,则会根据具体的业务逻辑进行流程实例容错或者任务实例容错。
 <ul>
@@ -178,7 +178,7 @@ MasterServer服务启动时向Zookeeper注册临时节点,通过监听Zookeepe
  <p align="center">
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant_master.png" alt="Master容错流程图"  width="40%" />
  </p>
-ZooKeeper Master容错完成之后则重新由EasyScheduler中Scheduler线程调度,遍历 DAG 找到”正在运行”和“提交成功”的任务,对”正在运行”的任务监控其任务实例的状态,对”提交成功”的任务需要判断Task Queue中是否已经存在,如果存在则同样监控任务实例的状态,如果不存在则重新提交任务实例。
+ZooKeeper Master容错完成之后则重新由DolphinScheduler中Scheduler线程调度,遍历 DAG 找到”正在运行”和“提交成功”的任务,对”正在运行”的任务监控其任务实例的状态,对”提交成功”的任务需要判断Task Queue中是否已经存在,如果存在则同样监控任务实例的状态,如果不存在则重新提交任务实例。
 <ul>
 <li>Worker容错流程图:</li>
 </ul>
@@ -242,7 +242,7 @@ ZooKeeper Master容错完成之后则重新由EasyScheduler中Scheduler线程调
 <p>通过gRPC通信获取远程日志信息</p>
 </li>
 <li>
-<p>介于考虑到尽可能的EasyScheduler的轻量级性,所以选择了gRPC实现远程访问日志信息。</p>
+<p>介于考虑到尽可能的DolphinScheduler的轻量级性,所以选择了gRPC实现远程访问日志信息。</p>
 </li>
 </ul>
  <p align="center">
@@ -300,7 +300,7 @@ ZooKeeper Master容错完成之后则重新由EasyScheduler中Scheduler线程调
 }
 </code></pre>
 <h3>总结</h3>
-<p>本文从调度出发,初步介绍了大数据分布式工作流调度系统--EasyScheduler的架构原理及实现思路。未完待续</p>
+<p>本文从调度出发,初步介绍了大数据分布式工作流调度系统--DolphinScheduler的架构原理及实现思路。未完待续</p>
 </div></section><footer class="footer-container"><div class="footer-body"><img src="/img/ds_gray.svg"/><div class="cols-container"><div class="col col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. 
 Incubation is required of all newly accepted projects until a further review indicates 
 that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. 
diff --git a/zh-cn/docs/developer_guide/architecture-design.json b/zh-cn/docs/developer_guide/architecture-design.json
index deffeca..82f17d2 100644
--- a/zh-cn/docs/developer_guide/architecture-design.json
+++ b/zh-cn/docs/developer_guide/architecture-design.json
@@ -1,6 +1,6 @@
 {
   "filename": "architecture-design.md",
-  "__html": "<h2>系统架构设计</h2>\n<p>在对调度系统架构说明之前,我们先来认识一下调度系统常用的名词</p>\n<h3>1.名词解释</h3>\n<p><strong>DAG:</strong> 全称Directed Acyclic Graph,简称DAG。工作流中的Task任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:</p>\n<p align=\"center\">\n  <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/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>< [...]
+  "__html": "<h2>系统架构设计</h2>\n<p>在对调度系统架构说明之前,我们先来认识一下调度系统常用的名词</p>\n<h3>1.名词解释</h3>\n<p><strong>DAG:</strong> 全称Directed Acyclic Graph,简称DAG。工作流中的Task任务以有向无环图的形式组装起来,从入度为零的节点进行拓扑遍历,直到无后继节点为止。举例如下图:</p>\n<p align=\"center\">\n  <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/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>< [...]
   "link": "/zh-cn/docs/developer_guide/architecture-design.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/developer_guide/backend-development.html b/zh-cn/docs/developer_guide/backend-development.html
index e10117e..f7c2bad 100644
--- a/zh-cn/docs/developer_guide/backend-development.html
+++ b/zh-cn/docs/developer_guide/backend-development.html
@@ -15,16 +15,16 @@
 	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
 <h2>环境要求</h2>
 <ul>
-<li><a href="http://geek.analysys.cn/topic/124">Mysql</a> (5.5+) :  必装</li>
+<li>Mysql (5.5+) :  必装</li>
 <li><a href="https://www.oracle.com/technetwork/java/javase/downloads/index.html">JDK</a> (1.8+) :  必装</li>
-<li><a href="https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper">ZooKeeper</a>(3.4.6+) :必装</li>
+<li>ZooKeeper(3.4.6+) :必装</li>
 <li><a href="http://maven.apache.org/download.cgi">Maven</a>(3.3+) :必装</li>
 </ul>
-<p>因EasyScheduler中escheduler-rpc模块使用到Grpc,需要用到Maven编译生成所需要的类
+<p>因DolphinScheduler中dolphinscheduler-rpc模块使用到Grpc,需要用到Maven编译生成所需要的类
 对maven不熟的伙伴请参考: <a href="http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html">maven in five minutes</a>(3.3+)</p>
 <p><a href="http://maven.apache.org/install.html">http://maven.apache.org/install.html</a></p>
 <h2>项目编译</h2>
-<p>将EasyScheduler源码下载导入Idea开发工具后,首先转为Maven项目(右键点击后选择&quot;Add Framework Support&quot;)</p>
+<p>将DolphinScheduler源码下载导入Idea开发工具后,首先转为Maven项目(右键点击后选择&quot;Add Framework Support&quot;)</p>
 <ul>
 <li>执行编译命令:</li>
 </ul>
@@ -33,7 +33,7 @@
 <ul>
 <li>查看目录</li>
 </ul>
-<p>正常编译完后,会在当前目录生成 ./target/escheduler-{version}/</p>
+<p>正常编译完后,会在当前目录生成 ./target/dolphinscheduler-{version}/</p>
 <pre><code>    bin
     conf
     lib
diff --git a/zh-cn/docs/developer_guide/backend-development.json b/zh-cn/docs/developer_guide/backend-development.json
index c164fc6..ca968c3 100644
--- a/zh-cn/docs/developer_guide/backend-development.json
+++ b/zh-cn/docs/developer_guide/backend-development.json
@@ -1,6 +1,6 @@
 {
   "filename": "backend-development.md",
-  "__html": "<h1>后端开发文档</h1>\n<h2>环境要求</h2>\n<ul>\n<li><a href=\"http://geek.analysys.cn/topic/124\">Mysql</a> (5.5+) :  必装</li>\n<li><a href=\"https://www.oracle.com/technetwork/java/javase/downloads/index.html\">JDK</a> (1.8+) :  必装</li>\n<li><a href=\"https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper\">ZooKeeper</a>(3.4.6+) :必装</li>\n<li><a href=\"http://maven.apache.org/download.cgi\">Maven</a>(3.3+) :必装</li>\n</ul>\n<p>因EasyScheduler中escheduler-rpc模块使用到Grpc,需要用到Maven编译生成所需要的类\n对 [...]
+  "__html": "<h1>后端开发文档</h1>\n<h2>环境要求</h2>\n<ul>\n<li>Mysql (5.5+) :  必装</li>\n<li><a href=\"https://www.oracle.com/technetwork/java/javase/downloads/index.html\">JDK</a> (1.8+) :  必装</li>\n<li>ZooKeeper(3.4.6+) :必装</li>\n<li><a href=\"http://maven.apache.org/download.cgi\">Maven</a>(3.3+) :必装</li>\n</ul>\n<p>因DolphinScheduler中dolphinscheduler-rpc模块使用到Grpc,需要用到Maven编译生成所需要的类\n对maven不熟的伙伴请参考: <a href=\"http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html\">maven in f [...]
   "link": "/zh-cn/docs/developer_guide/backend-development.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/developer_guide/frontend-development.html b/zh-cn/docs/developer_guide/frontend-development.html
index adb977d..cb16d94 100644
--- a/zh-cn/docs/developer_guide/frontend-development.html
+++ b/zh-cn/docs/developer_guide/frontend-development.html
@@ -38,7 +38,7 @@ Lodash 高性能的 JavaScript 实用工具库
 <h4>前端项目构建</h4>
 </li>
 </ul>
-<p>用命令行模式 <code>cd</code>  进入 <code>escheduler-ui</code>项目目录并执行 <code>npm install</code> 拉取项目依赖包</p>
+<p>用命令行模式 <code>cd</code>  进入 <code>dolphinscheduler-ui</code>项目目录并执行 <code>npm install</code> 拉取项目依赖包</p>
 <blockquote>
 <p>如果 <code>npm install</code> 速度非常慢</p>
 </blockquote>
@@ -51,7 +51,7 @@ Lodash 高性能的 JavaScript 实用工具库
 <ul>
 <li>新建一个<code>.env</code>文件,用于跟后端交互的接口</li>
 </ul>
-<p>在<code>escheduler-ui</code>目录下新建一个<code>.env</code>文件,在文件里添加后端服务的ip地址和端口,用于跟后端交互,<code>.env</code>文件内容如下:</p>
+<p>在<code>dolphinscheduler-ui</code>目录下新建一个<code>.env</code>文件,在文件里添加后端服务的ip地址和端口,用于跟后端交互,<code>.env</code>文件内容如下:</p>
 <pre><code># 代理的接口地址(自行修改)
 API_BASE = http://192.168.xx.xx:12345
 
@@ -78,7 +78,7 @@ API_BASE = http://192.168.xx.xx:12345
 <p>访问地址 <code>http://localhost:8888/#/</code></p>
 <h4>Linux下使用node启动并且守护进程</h4>
 <p>安装pm2 <code>npm install -g pm2</code></p>
-<p>在项目<code>escheduler-ui</code>根目录执行 <code>pm2 start npm -- run dev</code> 启动项目</p>
+<p>在项目<code>dolphinscheduler-ui</code>根目录执行 <code>pm2 start npm -- run dev</code> 启动项目</p>
 <h4>命令</h4>
 <ul>
 <li>
@@ -95,7 +95,7 @@ API_BASE = http://192.168.xx.xx:12345
 </li>
 </ul>
 <pre><code>
-[root@localhost escheduler-ui]# pm2 start npm -- run dev
+[root@localhost dolphinscheduler-ui]# pm2 start npm -- run dev
 [PM2] Applying action restartProcessId on app [npm](ids: 0)
 [PM2] [npm](0) ✓
 [PM2] Process successfully started
@@ -498,7 +498,7 @@ test.then(res =&gt; {
   name: 'test',  // 别名
   component: resolve =&gt; require(['../pages/test/index'], resolve),  // 路由对应组件入口文件
   meta: {
-    title: `${i18n.$t('test')} - EasyScheduler`  // title 显示
+    title: `${i18n.$t('test')} - DolphinScheduler`  // title 显示
   }
 },
 </code></pre>
diff --git a/zh-cn/docs/developer_guide/frontend-development.json b/zh-cn/docs/developer_guide/frontend-development.json
index 06ccb63..29132b6 100644
--- a/zh-cn/docs/developer_guide/frontend-development.json
+++ b/zh-cn/docs/developer_guide/frontend-development.json
@@ -1,6 +1,6 @@
 {
   "filename": "frontend-development.md",
-  "__html": "<h1>前端开发文档</h1>\n<h3>技术选型</h3>\n<pre><code>Vue mvvm框架\n\nEs6 ECMAScript 6.0\n\nAns-ui Analysys-ui\n\nD3 可视化库图表库\n\nJsplumb 连线插件库\n\nLodash 高性能的 JavaScript 实用工具库\n</code></pre>\n<h3>开发环境搭建</h3>\n<ul>\n<li>\n<h4>Node安装</h4>\n</li>\n</ul>\n<p>Node包下载 (注意版本 8.9.4) <code>https://nodejs.org/download/release/v8.9.4/</code></p>\n<ul>\n<li>\n<h4>前端项目构建</h4>\n</li>\n</ul>\n<p>用命令行模式 <code>cd</code>  进入 <code>escheduler-ui</code>项目目录并执行 <code>npm install</code> 拉取项目依赖包</p>\n<blockquote [...]
+  "__html": "<h1>前端开发文档</h1>\n<h3>技术选型</h3>\n<pre><code>Vue mvvm框架\n\nEs6 ECMAScript 6.0\n\nAns-ui Analysys-ui\n\nD3 可视化库图表库\n\nJsplumb 连线插件库\n\nLodash 高性能的 JavaScript 实用工具库\n</code></pre>\n<h3>开发环境搭建</h3>\n<ul>\n<li>\n<h4>Node安装</h4>\n</li>\n</ul>\n<p>Node包下载 (注意版本 8.9.4) <code>https://nodejs.org/download/release/v8.9.4/</code></p>\n<ul>\n<li>\n<h4>前端项目构建</h4>\n</li>\n</ul>\n<p>用命令行模式 <code>cd</code>  进入 <code>dolphinscheduler-ui</code>项目目录并执行 <code>npm install</code> 拉取项目依赖包</p>\n<bloc [...]
   "link": "/zh-cn/docs/developer_guide/frontend-development.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/developer_guide/plugin-development.html b/zh-cn/docs/developer_guide/plugin-development.html
index 2c8c5d9..31a15c5 100644
--- a/zh-cn/docs/developer_guide/plugin-development.html
+++ b/zh-cn/docs/developer_guide/plugin-development.html
@@ -17,8 +17,8 @@
 <h3>基于SHELL的任务</h3>
 <h4>基于YARN的计算(参见MapReduceTask)</h4>
 <ul>
-<li>需要在 <strong>cn.escheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 类中创建自定义任务(也需在TaskType注册对应的任务类型)</li>
-<li>需要继承<strong>cn.escheduler.server.worker.task</strong> 下的 <strong>AbstractYarnTask</strong></li>
+<li>需要在 <strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 类中创建自定义任务(也需在TaskType注册对应的任务类型)</li>
+<li>需要继承<strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>AbstractYarnTask</strong></li>
 <li>构造方法调度 <strong>AbstractYarnTask</strong> 构造方法</li>
 <li>继承 <strong>AbstractParameters</strong> 自定义任务参数实体</li>
 <li>重写 <strong>AbstractTask</strong> 的 <strong>init</strong> 方法中解析<strong>自定义任务参数</strong></li>
@@ -27,10 +27,10 @@
 <h4>基于非YARN的计算(参见ShellTask)</h4>
 <ul>
 <li>
-<p>需要在 <strong>cn.escheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 中创建自定义任务</p>
+<p>需要在 <strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 中创建自定义任务</p>
 </li>
 <li>
-<p>需要继承<strong>cn.escheduler.server.worker.task</strong> 下的 <strong>AbstractTask</strong></p>
+<p>需要继承<strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>AbstractTask</strong></p>
 </li>
 <li>
 <p>构造方法中实例化 <strong>ShellCommandExecutor</strong></p>
@@ -60,8 +60,8 @@
 </ul>
 <h3>基于非SHELL的任务(参见SqlTask)</h3>
 <ul>
-<li>需要在 <strong>cn.escheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 中创建自定义任务</li>
-<li>需要继承<strong>cn.escheduler.server.worker.task</strong> 下的 <strong>AbstractTask</strong></li>
+<li>需要在 <strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 中创建自定义任务</li>
+<li>需要继承<strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>AbstractTask</strong></li>
 <li>继承 <strong>AbstractParameters</strong> 自定义任务参数实体</li>
 <li>构造方法或者重写 <strong>AbstractTask</strong> 的 <strong>init</strong> 方法中,解析自定义任务参数实体</li>
 <li>重写 <strong>handle</strong> 方法实现业务逻辑并设置相应的<strong>exitStatusCode</strong></li>
diff --git a/zh-cn/docs/developer_guide/plugin-development.json b/zh-cn/docs/developer_guide/plugin-development.json
index fa446f6..dac76f8 100644
--- a/zh-cn/docs/developer_guide/plugin-development.json
+++ b/zh-cn/docs/developer_guide/plugin-development.json
@@ -1,6 +1,6 @@
 {
   "filename": "plugin-development.md",
-  "__html": "<h2>任务插件开发</h2>\n<p>提醒:目前任务插件开发暂不支持热部署</p>\n<h3>基于SHELL的任务</h3>\n<h4>基于YARN的计算(参见MapReduceTask)</h4>\n<ul>\n<li>需要在 <strong>cn.escheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 类中创建自定义任务(也需在TaskType注册对应的任务类型)</li>\n<li>需要继承<strong>cn.escheduler.server.worker.task</strong> 下的 <strong>AbstractYarnTask</strong></li>\n<li>构造方法调度 <strong>AbstractYarnTask</strong> 构造方法</li>\n<li>继承 <strong>AbstractParameters</strong> 自定义任务参数实体</li>\n<li>重写 <strong>AbstractTask [...]
+  "__html": "<h2>任务插件开发</h2>\n<p>提醒:目前任务插件开发暂不支持热部署</p>\n<h3>基于SHELL的任务</h3>\n<h4>基于YARN的计算(参见MapReduceTask)</h4>\n<ul>\n<li>需要在 <strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>TaskManager</strong> 类中创建自定义任务(也需在TaskType注册对应的任务类型)</li>\n<li>需要继承<strong>cn.dolphinscheduler.server.worker.task</strong> 下的 <strong>AbstractYarnTask</strong></li>\n<li>构造方法调度 <strong>AbstractYarnTask</strong> 构造方法</li>\n<li>继承 <strong>AbstractParameters</strong> 自定义任务参数实体</li>\n<li>重写 <strong> [...]
   "link": "/zh-cn/docs/developer_guide/plugin-development.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/faq.html b/zh-cn/docs/faq.html
index d07659f..5d3588c 100644
--- a/zh-cn/docs/faq.html
+++ b/zh-cn/docs/faq.html
@@ -12,8 +12,8 @@
 	<link rel="stylesheet" href="/build/documentation.css" />
 </head>
 <body>
-	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
-<p>A: EasyScheduler由5个服务组成,MasterServer、WorkerServer、ApiServer、AlertServer、LoggerServer和UI。</p>
+	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
+<p>A: DolphinScheduler由5个服务组成,MasterServer、WorkerServer、ApiServer、AlertServer、LoggerServer和UI。</p>
 <table>
 <thead>
 <tr>
@@ -53,7 +53,7 @@
 <p>A:支持绝大多数邮箱,qq、163、126、139、outlook、aliyun等皆支持。支持<strong>TLS和SSL</strong>协议,可以在alert.properties中选择性配置</p>
 <hr>
 <h2>Q:常用的系统变量时间参数有哪些,如何使用?</h2>
-<p>A:请参考 <a href="https://analysys.github.io/easyscheduler_docs_cn/%E7%B3%BB%E7%BB%9F%E4%BD%BF%E7%94%A8%E6%89%8B%E5%86%8C.html#%E7%B3%BB%E7%BB%9F%E5%8F%82%E6%95%B0">https://analysys.github.io/easyscheduler_docs_cn/系统使用手册.html#系统参数</a></p>
+<p>A:请参考 使用手册</p>
 <hr>
 <h2>Q:pip install kazoo 这个安装报错。是必须安装的吗?</h2>
 <p>A: 这个是python连接zookeeper需要使用到的,必须要安装</p>
@@ -64,48 +64,43 @@
 <h2>Q:任务的优先级</h2>
 <p>A:我们同时 <strong>支持流程和任务的优先级</strong>。优先级我们有 <strong>HIGHEST、HIGH、MEDIUM、LOW和LOWEST</strong> 五种级别。<strong>可以设置不同流程实例之间的优先级,也可以设置同一个流程实例中不同任务实例的优先级</strong>。详细内容请参考任务优先级设计 <a href="https://analysys.github.io/easyscheduler_docs_cn/%E7%B3%BB%E7%BB%9F%E6%9E%B6%E6%9E%84%E8%AE%BE%E8%AE%A1.html#%E7%B3%BB%E7%BB%9F%E6%9E%B6%E6%9E%84%E8%AE%BE%E8%AE%A1">https://analysys.github.io/easyscheduler_docs_cn/系统架构设计.html#系统架构设计</a></p>
 <hr>
-<h2>Q:escheduler-grpc报错</h2>
+<h2>Q:dolphinscheduler-grpc报错</h2>
 <p>A:在根目录下执行:mvn -U clean package assembly:assembly -Dmaven.test.skip=true , 然后刷新下整个项目</p>
 <hr>
-<h2>Q:EasyScheduler支持windows上运行么</h2>
+<h2>Q:DolphinScheduler支持windows上运行么</h2>
 <p>A: 理论上只有<strong>Worker是需要在Linux上运行的</strong>,其它的服务都是可以在windows上正常运行的。但是还是建议最好能在linux上部署使用</p>
 <hr>
 <h2>Q:UI 在 linux 编译node-sass提示:Error:EACCESS:permission denied,mkdir xxxx</h2>
 <p>A:单独安装 <strong>npm install node-sass --unsafe-perm</strong>,之后再 <strong>npm install</strong></p>
 <hr>
 <h2>Q:UI 不能正常登陆访问</h2>
-<p>A: 1,如果是node启动的查看escheduler-ui下的.env API_BASE配置是否是Api Server服务地址</p>
-<pre><code>2,如果是nginx启动的并且是通过 **install-escheduler-ui.sh** 安装的,查看             											**/etc/nginx/conf.d/escheduler.conf** 中的proxy_pass配置是否是Api Server服务地址
+<p>A: 1,如果是node启动的查看dolphinscheduler-ui下的.env API_BASE配置是否是Api Server服务地址</p>
+<pre><code>2,如果是nginx启动的并且是通过 **install-dolphinscheduler-ui.sh** 安装的,查看             											**/etc/nginx/conf.d/dolphinscheduler.conf** 中的proxy_pass配置是否是Api Server服务地址
 
-3,如果以上配置都是正确的,那么请查看Api Server服务是否是正常的,curl http://192.168.xx.xx:12345/escheduler/users/get-user-info,查看Api Server日志,如果提示 cn.escheduler.api.interceptor.LoginHandlerInterceptor:[76] - session info is null,则证明Api Server服务是正常的
+3,如果以上配置都是正确的,那么请查看Api Server服务是否是正常的,curl http://192.168.xx.xx:12345/dolphinscheduler/users/get-user-info,查看Api Server日志,如果提示 cn.dolphinscheduler.api.interceptor.LoginHandlerInterceptor:[76] - session info is null,则证明Api Server服务是正常的
 
 4,如果以上都没有问题,需要查看一下 **application.properties** 中的 **server.context-path 和 server.port 配置**是否正确
 </code></pre>
 <hr>
 <h2>Q: 流程定义手动启动或调度启动之后,没有流程实例生成</h2>
 <p>A: 1,首先通过<strong>jps 查看MasterServer服务是否存在</strong>,或者从服务监控直接查看zk中是否存在master服务</p>
-<p>​	2,如果存在master服务,查看 <strong>命令状态统计</strong> 或者 <strong>t_escheduler_error_command</strong> 中是否增加的新记录,如果增加了,<strong>请查看 message 字段定位启动异常原因</strong></p>
+<p>​	2,如果存在master服务,查看 <strong>命令状态统计</strong> 或者 <strong>t_ds_error_command</strong> 中是否增加的新记录,如果增加了,<strong>请查看 message 字段定位启动异常原因</strong></p>
 <hr>
 <h2>Q : 任务状态一直处于提交成功状态</h2>
 <p>A: 1,首先通过<strong>jps 查看WorkerServer服务是否存在</strong>,或者从服务监控直接查看zk中是否存在worker服务</p>
 <p>​       2,如果 <strong>WorkerServer</strong> 服务正常,需要 <strong>查看MasterServer是否把task任务放到zk队列中</strong> ,<strong>需要查看MasterServer日志及zk队列中是否有任务阻塞</strong></p>
 <p>​	3,如果以上都没有问题,需要定位是否指定了Worker分组,但是 <strong>Worker分组的机器不是在线状态</strong></p>
 <hr>
-<h2>Q: 是否提供Docker镜像及Dockerfile</h2>
-<p>A: 提供Docker镜像及Dockerfile。</p>
-<p>Docker镜像地址:<a href="https://hub.docker.com/r/escheduler/escheduler_images">https://hub.docker.com/r/escheduler/escheduler_images</a></p>
-<p>Dockerfile地址:<a href="https://github.com/qiaozhanwei/escheduler_dockerfile/tree/master/docker_escheduler">https://github.com/qiaozhanwei/escheduler_dockerfile/tree/master/docker_escheduler</a></p>
-<hr>
 <h2>Q : <a href="http://install.sh">install.sh</a> 中需要注意问题</h2>
 <p>A:  1,如果替换变量中包含特殊字符,<strong>请用 \ 转移符进行转移</strong></p>
-<p>​	2,installPath=&quot;/data1_1T/escheduler&quot;,<strong>这个目录不能和当前要一键安装的install.sh目录是一样的</strong></p>
-<p>​	3,deployUser=&quot;escheduler&quot;,<strong>部署用户必须具有sudo权限</strong>,因为worker是通过sudo -u 租户 sh xxx.command进行执行的</p>
+<p>​	2,installPath=&quot;/data1_1T/dolphinscheduler&quot;,<strong>这个目录不能和当前要一键安装的install.sh目录是一样的</strong></p>
+<p>​	3,deployUser=&quot;dolphinscheduler&quot;,<strong>部署用户必须具有sudo权限</strong>,因为worker是通过sudo -u 租户 sh xxx.command进行执行的</p>
 <p>​	4,monitorServerState=&quot;false&quot;,服务监控脚本是否启动,默认是不启动服务监控脚本的。<strong>如果启动服务监控脚本,则每5分钟定时来监控master和worker的服务是否down机,如果down机则会自动重启</strong></p>
 <p>​	5,hdfsStartupSate=&quot;false&quot;,是否开启HDFS资源上传功能。默认是不开启的,<strong>如果不开启则资源中心是不能使用的</strong>。如果开启,需要conf/common/hadoop/hadoop.properties中配置fs.defaultFS和yarn的相关配置,如果使用namenode HA,需要将core-site.xml和hdfs-site.xml复制到conf根目录下</p>
 <p>​	注意:<strong>1.0.x版本是不会自动创建hdfs根目录的,需要自行创建,并且需要部署用户有hdfs的操作权限</strong></p>
 <hr>
 <h2>Q : 流程定义和流程实例下线异常</h2>
-<p>A : 对于 <strong>1.0.4 以前的版本中</strong>,修改escheduler-api cn.escheduler.api.quartz包下的代码即可</p>
+<p>A : 对于 <strong>1.0.4 以前的版本中</strong>,修改dolphinscheduler-api cn.dolphinscheduler.api.quartz包下的代码即可</p>
 <pre><code>public boolean deleteJob(String jobName, String jobGroupName) {
     lock.writeLock().lock();
     try {
@@ -151,7 +146,7 @@
 <p>​	3,流程定义 <strong>查看或编辑</strong> DAG 页面,任意 <strong>任务节点右击</strong> 启动流程定义</p>
 <p>​	4,可以对流程定义 DAG 编辑,设置某些任务的运行标志位 <strong>禁止运行</strong>,则在启动流程定义的时候,将该节点的连线将从DAG中去掉</p>
 <h2>Q : Python任务设置Python版本</h2>
-<p>A:  1,对于1**.0.3之后的版本**只需要修改 conf/env/.escheduler_env.sh中的PYTHON_HOME</p>
+<p>A:  1,对于1**.0.3之后的版本**只需要修改 conf/env/.dolphinscheduler_env.sh中的PYTHON_HOME</p>
 <pre><code>export PYTHON_HOME=/bin/python
 </code></pre>
 <p>注意:这了 <strong>PYTHON_HOME</strong> ,是python命令的绝对路径,而不是单纯的 PYTHON_HOME,还需要注意的是 export PATH 的时候,需要直接</p>
@@ -160,8 +155,8 @@
 <p>​	2,对 1.0.3 之前的版本,Python任务只能支持系统的Python版本,不支持指定Python版本</p>
 <h2>Q: Worker Task 通过sudo -u 租户 sh xxx.command会产生子进程,在kill的时候,是否会杀掉</h2>
 <p>A: 我们会在1.0.4中增加kill任务同时,kill掉任务产生的各种所有子进程</p>
-<h2>Q : EasyScheduler中的队列怎么用,用户队列和租户队列是什么意思</h2>
-<p>A : EasyScheduler 中的队列可以在用户或者租户上指定队列,<strong>用户指定的队列优先级是高于租户队列的优先级的。</strong>,例如:对MR任务指定队列,是通过 mapreduce.job.queuename 来指定队列的。</p>
+<h2>Q : DolphinScheduler中的队列怎么用,用户队列和租户队列是什么意思</h2>
+<p>A : DolphinScheduler 中的队列可以在用户或者租户上指定队列,<strong>用户指定的队列优先级是高于租户队列的优先级的。</strong>,例如:对MR任务指定队列,是通过 mapreduce.job.queuename 来指定队列的。</p>
 <p>注意:MR在用以上方法指定队列的时候,传递参数请使用如下方式:</p>
 <pre><code>	Configuration conf = new Configuration();
         GenericOptionsParser optionParser = new GenericOptionsParser(conf, args);
diff --git a/zh-cn/docs/faq.json b/zh-cn/docs/faq.json
index 6e87e7b..339c980 100644
--- a/zh-cn/docs/faq.json
+++ b/zh-cn/docs/faq.json
@@ -1,6 +1,6 @@
 {
   "filename": "faq.md",
-  "__html": "<h2>Q:EasyScheduler服务介绍及建议运行内存</h2>\n<p>A: EasyScheduler由5个服务组成,MasterServer、WorkerServer、ApiServer、AlertServer、LoggerServer和UI。</p>\n<table>\n<thead>\n<tr>\n<th>服务</th>\n<th>说明</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MasterServer</td>\n<td>主要负责 <strong>DAG</strong> 的切分和任务状态的监控</td>\n</tr>\n<tr>\n<td>WorkerServer/LoggerServer</td>\n<td>主要负责任务的提交、执行和任务状态的更新。LoggerServer用于Rest Api通过 <strong>RPC</strong> 查看日志</td>\n</tr>\n<tr>\n<td>ApiServer</td>\n<td>提供Rest Api服务,供UI进行调用</td [...]
+  "__html": "<h2>Q:DolphinScheduler服务介绍及建议运行内存</h2>\n<p>A: DolphinScheduler由5个服务组成,MasterServer、WorkerServer、ApiServer、AlertServer、LoggerServer和UI。</p>\n<table>\n<thead>\n<tr>\n<th>服务</th>\n<th>说明</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MasterServer</td>\n<td>主要负责 <strong>DAG</strong> 的切分和任务状态的监控</td>\n</tr>\n<tr>\n<td>WorkerServer/LoggerServer</td>\n<td>主要负责任务的提交、执行和任务状态的更新。LoggerServer用于Rest Api通过 <strong>RPC</strong> 查看日志</td>\n</tr>\n<tr>\n<td>ApiServer</td>\n<td>提供Rest Api服务,供UI进行 [...]
   "link": "/zh-cn/docs/faq.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/release/note.html b/zh-cn/docs/release/note.html
index 8694bac..7a7a053 100644
--- a/zh-cn/docs/release/note.html
+++ b/zh-cn/docs/release/note.html
@@ -13,7 +13,7 @@
 </head>
 <body>
 	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
-<p>Easy Scheduler 1.1.0及1.1.0之前的版本都不是apache版本</p>
+<p>DolphinScheduler 1.1.0及1.1.0之前的版本都不是Apache版本</p>
 </div></section><footer class="footer-container"><div class="footer-body"><img src="/img/ds_gray.svg"/><div class="cols-container"><div class="col col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. 
 Incubation is required of all newly accepted projects until a further review indicates 
 that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. 
diff --git a/zh-cn/docs/release/note.json b/zh-cn/docs/release/note.json
index 12fa022..cd111f4 100644
--- a/zh-cn/docs/release/note.json
+++ b/zh-cn/docs/release/note.json
@@ -1,6 +1,6 @@
 {
   "filename": "note.md",
-  "__html": "<h1>Note</h1>\n<p>Easy Scheduler 1.1.0及1.1.0之前的版本都不是apache版本</p>\n",
+  "__html": "<h1>Note</h1>\n<p>DolphinScheduler 1.1.0及1.1.0之前的版本都不是Apache版本</p>\n",
   "link": "/zh-cn/docs/release/note.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/release/upgrade.html b/zh-cn/docs/release/upgrade.html
index 40e50c0..736c763 100644
--- a/zh-cn/docs/release/upgrade.html
+++ b/zh-cn/docs/release/upgrade.html
@@ -12,13 +12,13 @@
 	<link rel="stylesheet" href="/build/documentation.css" />
 </head>
 <body>
-	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
+	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
 <h2>1. 备份上一版本文件和数据库</h2>
-<h2>2. 停止escheduler所有服务</h2>
+<h2>2. 停止dolphinscheduler所有服务</h2>
 <p><code>sh ./script/stop-all.sh</code></p>
 <h2>3. 下载新版本的安装包</h2>
 <ul>
-<li><a href="https://gitee.com/easyscheduler/EasyScheduler/attach_files">码云下载</a>, 下载最新版本的前后端安装包(后端简称escheduler-backend、前端简称escheduler-ui)</li>
+<li><a href="https://github.com/apache/incubator-dolphinscheduler/releases">github</a>, 下载最新版本的前后端安装包(dolphinscheduler-backend、dolphinscheduler-ui)</li>
 <li>以下升级操作都需要在新版本的目录进行</li>
 </ul>
 <h2>4. 数据库升级</h2>
diff --git a/zh-cn/docs/release/upgrade.json b/zh-cn/docs/release/upgrade.json
index a089c7b..7c1ba44 100644
--- a/zh-cn/docs/release/upgrade.json
+++ b/zh-cn/docs/release/upgrade.json
@@ -1,6 +1,6 @@
 {
   "filename": "upgrade.md",
-  "__html": "<h1>EasyScheduler升级文档</h1>\n<h2>1. 备份上一版本文件和数据库</h2>\n<h2>2. 停止escheduler所有服务</h2>\n<p><code>sh ./script/stop-all.sh</code></p>\n<h2>3. 下载新版本的安装包</h2>\n<ul>\n<li><a href=\"https://gitee.com/easyscheduler/EasyScheduler/attach_files\">码云下载</a>, 下载最新版本的前后端安装包(后端简称escheduler-backend、前端简称escheduler-ui)</li>\n<li>以下升级操作都需要在新版本的目录进行</li>\n</ul>\n<h2>4. 数据库升级</h2>\n<ul>\n<li>修改conf/dao/data_source.properties中的下列属性</li>\n</ul>\n<pre><code>    spring.datasource.url\n    spring.datasou [...]
+  "__html": "<h1>DolphinScheduler升级文档</h1>\n<h2>1. 备份上一版本文件和数据库</h2>\n<h2>2. 停止dolphinscheduler所有服务</h2>\n<p><code>sh ./script/stop-all.sh</code></p>\n<h2>3. 下载新版本的安装包</h2>\n<ul>\n<li><a href=\"https://github.com/apache/incubator-dolphinscheduler/releases\">github</a>, 下载最新版本的前后端安装包(dolphinscheduler-backend、dolphinscheduler-ui)</li>\n<li>以下升级操作都需要在新版本的目录进行</li>\n</ul>\n<h2>4. 数据库升级</h2>\n<ul>\n<li>修改conf/dao/data_source.properties中的下列属性</li>\n</ul>\n<pre><code>    spring.datasource.url\n [...]
   "link": "/zh-cn/docs/release/upgrade.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/user_doc/backend-deployment.html b/zh-cn/docs/user_doc/backend-deployment.html
index eb07766..47e0cdf 100644
--- a/zh-cn/docs/user_doc/backend-deployment.html
+++ b/zh-cn/docs/user_doc/backend-deployment.html
@@ -15,18 +15,18 @@
 	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/zh-cn/index.html"><img class="logo" src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class="language-switch language-switch-normal">En</span><div class="header-menu"><img class="header-menu-toggle" src="/img/system/menu_gray.png"/><ul><li class="menu-item menu-item-nor [...]
 <p>后端有2种部署方式,分别为自动化部署和编译源码部署</p>
 <h2>1、准备工作</h2>
-<p>请下载最新版本的安装包,下载地址: <a href="https://github.com/analysys/EasyScheduler/releases">github下载</a> ,下载escheduler-backend-x.x.x.tar.gz(后端简称escheduler-backend),escheduler-ui-x.x.x.tar.gz(前端简称escheduler-ui)</p>
+<p>请下载最新版本的安装包,下载地址: <a href="https://github.com/apache/incubator-dolphinscheduler/releases">github下载</a></p>
 <h4>准备一: 基础软件安装(必装项请自行安装)</h4>
 <ul>
-<li><a href="http://geek.analysys.cn/topic/124">Mysql</a> (5.5+) :  必装</li>
+<li>Mysql (5.5+) :  必装</li>
 <li><a href="https://www.oracle.com/technetwork/java/javase/downloads/index.html">JDK</a> (1.8+) :  必装</li>
-<li><a href="https://www.jianshu.com/p/de90172ea680">ZooKeeper</a>(3.4.6+) :必装</li>
-<li><a href="https://blog.csdn.net/Evankaka/article/details/51612437">Hadoop</a>(2.6+) :选装, 如果需要使用到资源上传功能,MapReduce任务提交则需要配置Hadoop(上传的资源文件目前保存在Hdfs上)</li>
+<li>ZooKeeper (3.4.6+) :必装</li>
+<li>Hadoop (2.6+) :选装, 如果需要使用到资源上传功能,MapReduce任务提交则需要配置Hadoop(上传的资源文件目前保存在Hdfs上)</li>
 <li><a href="https://staroon.pro/2017/12/09/HiveInstall/">Hive</a>(1.2.1) :  选装,hive任务提交需要安装</li>
-<li>Spark(1.x,2.x) : 选装,Spark任务提交需要安装</li>
-<li>PostgreSQL(8.2.15+) : 选装,PostgreSQL PostgreSQL存储过程需要安装</li>
+<li>Spark (1.x,2.x) : 选装,Spark任务提交需要安装</li>
+<li>PostgreSQL (8.2.15+) : 选装,PostgreSQL PostgreSQL存储过程需要安装</li>
 </ul>
-<pre><code> 注意:EasyScheduler本身不依赖Hadoop、Hive、Spark、PostgreSQL,仅是会调用他们的Client,用于对应任务的运行。
+<pre><code> 注意:DolphinScheduler本身不依赖Hadoop、Hive、Spark、PostgreSQL,仅是会调用他们的Client,用于对应任务的运行。
 </code></pre>
 <h4>准备二: 创建部署用户</h4>
 <ul>
@@ -34,8 +34,8 @@
 </ul>
 <pre><code class="language-部署账号">vi /etc/sudoers
 
-# 例如部署用户是escheduler账号
-escheduler  ALL=(ALL)       NOPASSWD: NOPASSWD: ALL
+# 例如部署用户是dolphinscheduler账号
+dolphinscheduler  ALL=(ALL)       NOPASSWD: NOPASSWD: ALL
 
 # 并且需要注释掉 Default requiretty 一行
 #Default requiretty
@@ -43,16 +43,16 @@ escheduler  ALL=(ALL)       NOPASSWD: NOPASSWD: ALL
 <h4>准备三: ssh免密配置</h4>
 <p>在部署机器和其他安装机器上配置ssh免密登录,如果要在部署机上安装调度,需要配置本机免密登录自己</p>
 <ul>
-<li><a href="http://geek.analysys.cn/topic/113">将 <strong>主机器</strong> 和各个其它机器SSH打通</a></li>
+<li>将 <strong>主机器</strong> 和各个其它机器SSH免密打通</li>
 </ul>
 <h4>准备四:数据库初始化</h4>
 <ul>
 <li>
 <p>创建database和账号</p>
 <p>执行以下命令创建database和账号</p>
-<pre><code class="language-sql"><span class="hljs-keyword">CREATE</span> <span class="hljs-keyword">DATABASE</span> escheduler <span class="hljs-keyword">DEFAULT</span> <span class="hljs-built_in">CHARACTER</span> <span class="hljs-keyword">SET</span> utf8 <span class="hljs-keyword">DEFAULT</span> <span class="hljs-keyword">COLLATE</span> utf8_general_ci;
-<span class="hljs-keyword">GRANT</span> <span class="hljs-keyword">ALL</span> <span class="hljs-keyword">PRIVILEGES</span> <span class="hljs-keyword">ON</span> escheduler.* <span class="hljs-keyword">TO</span> <span class="hljs-string">'{user}'</span>@<span class="hljs-string">'%'</span> <span class="hljs-keyword">IDENTIFIED</span> <span class="hljs-keyword">BY</span> <span class="hljs-string">'{password}'</span>;
-<span class="hljs-keyword">GRANT</span> <span class="hljs-keyword">ALL</span> <span class="hljs-keyword">PRIVILEGES</span> <span class="hljs-keyword">ON</span> escheduler.* <span class="hljs-keyword">TO</span> <span class="hljs-string">'{user}'</span>@<span class="hljs-string">'localhost'</span> <span class="hljs-keyword">IDENTIFIED</span> <span class="hljs-keyword">BY</span> <span class="hljs-string">'{password}'</span>;
+<pre><code class="language-sql"><span class="hljs-keyword">CREATE</span> <span class="hljs-keyword">DATABASE</span> dolphinscheduler <span class="hljs-keyword">DEFAULT</span> <span class="hljs-built_in">CHARACTER</span> <span class="hljs-keyword">SET</span> utf8 <span class="hljs-keyword">DEFAULT</span> <span class="hljs-keyword">COLLATE</span> utf8_general_ci;
+<span class="hljs-keyword">GRANT</span> <span class="hljs-keyword">ALL</span> <span class="hljs-keyword">PRIVILEGES</span> <span class="hljs-keyword">ON</span> dolphinscheduler.* <span class="hljs-keyword">TO</span> <span class="hljs-string">'{user}'</span>@<span class="hljs-string">'%'</span> <span class="hljs-keyword">IDENTIFIED</span> <span class="hljs-keyword">BY</span> <span class="hljs-string">'{password}'</span>;
+<span class="hljs-keyword">GRANT</span> <span class="hljs-keyword">ALL</span> <span class="hljs-keyword">PRIVILEGES</span> <span class="hljs-keyword">ON</span> dolphinscheduler.* <span class="hljs-keyword">TO</span> <span class="hljs-string">'{user}'</span>@<span class="hljs-string">'localhost'</span> <span class="hljs-keyword">IDENTIFIED</span> <span class="hljs-keyword">BY</span> <span class="hljs-string">'{password}'</span>;
 <span class="hljs-keyword">flush</span> <span class="hljs-keyword">privileges</span>;
 </code></pre>
 </li>
@@ -64,12 +64,12 @@ escheduler  ALL=(ALL)       NOPASSWD: NOPASSWD: ALL
     spring.datasource.password
 </code></pre>
 <p>执行创建表和导入基础数据脚本</p>
-<pre><code>sh ./script/create-escheduler.sh
+<pre><code>sh ./script/create-dolphinscheduler.sh
 </code></pre>
 </li>
 </ul>
 <h4>准备五: 修改部署目录权限及运行参数</h4>
-<pre><code>escheduler-backend目录介绍
+<pre><code>dophinscheduler-backend目录介绍
 </code></pre>
 <pre><code>bin : 基础服务启动脚本
 conf : 项目配置文件
@@ -80,11 +80,11 @@ install.sh : 一键部署脚本
 </code></pre>
 <ul>
 <li>
-<p>修改权限(请将'deployUser'字段修改为对应部署用户),使得部署用户对escheduler-backend目录有操作权限</p>
-<p><code>sudo chown -R deployUser:deployUser escheduler-backend</code></p>
+<p>修改权限(请将'deployUser'字段修改为对应部署用户),使得部署用户对dolphinscheduler-backend目录有操作权限</p>
+<p><code>sudo chown -R deployUser:deployUser dolphinscheduler-backend</code></p>
 </li>
 <li>
-<p>修改conf/env/目录下的 <code>.escheduler_env.sh</code> 环境变量</p>
+<p>修改conf/env/目录下的 <code>.dolphinscheduler_env.sh</code> 环境变量</p>
 </li>
 <li>
 <p>修改部署参数(根据自己服务器及业务情况):</p>
@@ -132,11 +132,11 @@ install.sh : 一键部署脚本
 <p>如果以上服务都正常启动,说明自动部署成功</p>
 <p>部署成功后,可以进行日志查看,日志统一存放于指定文件夹内</p>
 <pre><code class="language-日志路径"> logs/
-    ├── escheduler-alert-server.log
-    ├── escheduler-master-server.log
-    |—— escheduler-worker-server.log
-    |—— escheduler-api-server.log
-    |—— escheduler-logger-server.log
+    ├── dolphinscheduler-alert-server.log
+    ├── dolphinscheduler-master-server.log
+    |—— dolphinscheduler-worker-server.log
+    |—— dolphinscheduler-api-server.log
+    |—— dolphinscheduler-logger-server.log
 </code></pre>
 <h3>2.2 编译源码来部署</h3>
 <p>将源码包release版本下载后,解压进入根目录</p>
@@ -148,7 +148,7 @@ install.sh : 一键部署脚本
 <ul>
 <li>查看目录</li>
 </ul>
-<p>正常编译完后,会在当前目录生成 <code>./target/escheduler-{version}/</code></p>
+<p>正常编译完后,会在当前目录生成 <code>./target/dolphinscheduler-{version}/</code></p>
 <pre><code class="language-查看目录"> ../
     ├── bin
     ├── conf
@@ -172,36 +172,36 @@ install.sh : 一键部署脚本
 <p>启停Master</p>
 </li>
 </ul>
-<pre><code class="language-启动master">sh ./bin/escheduler-daemon.sh start master-server
-sh ./bin/escheduler-daemon.sh stop master-server
+<pre><code class="language-启动master">sh ./bin/dolphinscheduler-daemon.sh start master-server
+sh ./bin/dolphinscheduler-daemon.sh stop master-server
 </code></pre>
 <ul>
 <li>启停Worker</li>
 </ul>
-<pre><code>sh ./bin/escheduler-daemon.sh start worker-server
-sh ./bin/escheduler-daemon.sh stop worker-server
+<pre><code>sh ./bin/dolphinscheduler-daemon.sh start worker-server
+sh ./bin/dolphinscheduler-daemon.sh stop worker-server
 </code></pre>
 <ul>
 <li>启停Api</li>
 </ul>
-<pre><code>sh ./bin/escheduler-daemon.sh start api-server
-sh ./bin/escheduler-daemon.sh stop api-server
+<pre><code>sh ./bin/dolphinscheduler-daemon.sh start api-server
+sh ./bin/dolphinscheduler-daemon.sh stop api-server
 </code></pre>
 <ul>
 <li>启停Logger</li>
 </ul>
-<pre><code>sh ./bin/escheduler-daemon.sh start logger-server
-sh ./bin/escheduler-daemon.sh stop logger-server
+<pre><code>sh ./bin/dolphinscheduler-daemon.sh start logger-server
+sh ./bin/dolphinscheduler-daemon.sh stop logger-server
 </code></pre>
 <ul>
 <li>启停Alert</li>
 </ul>
-<pre><code>sh ./bin/escheduler-daemon.sh start alert-server
-sh ./bin/escheduler-daemon.sh stop alert-server
+<pre><code>sh ./bin/dolphinscheduler-daemon.sh start alert-server
+sh ./bin/dolphinscheduler-daemon.sh stop alert-server
 </code></pre>
 <h2>3、数据库升级</h2>
 <p>数据库升级是在1.0.2版本增加的功能,执行以下命令即可自动升级数据库</p>
-<pre><code>sh ./script/upgrade-escheduler.sh
+<pre><code>sh ./script/upgrade-dolphinscheduler.sh
 </code></pre>
 </div></section><footer class="footer-container"><div class="footer-body"><img src="/img/ds_gray.svg"/><div class="cols-container"><div class="col col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. 
 Incubation is required of all newly accepted projects until a further review indicates 
diff --git a/zh-cn/docs/user_doc/backend-deployment.json b/zh-cn/docs/user_doc/backend-deployment.json
index 49cf539..463185d 100644
--- a/zh-cn/docs/user_doc/backend-deployment.json
+++ b/zh-cn/docs/user_doc/backend-deployment.json
@@ -1,6 +1,6 @@
 {
   "filename": "backend-deployment.md",
-  "__html": "<h1>后端部署文档</h1>\n<p>后端有2种部署方式,分别为自动化部署和编译源码部署</p>\n<h2>1、准备工作</h2>\n<p>请下载最新版本的安装包,下载地址: <a href=\"https://github.com/analysys/EasyScheduler/releases\">github下载</a> ,下载escheduler-backend-x.x.x.tar.gz(后端简称escheduler-backend),escheduler-ui-x.x.x.tar.gz(前端简称escheduler-ui)</p>\n<h4>准备一: 基础软件安装(必装项请自行安装)</h4>\n<ul>\n<li><a href=\"http://geek.analysys.cn/topic/124\">Mysql</a> (5.5+) :  必装</li>\n<li><a href=\"https://www.oracle.com/technetwork/java/javase/downloads/index.html\">JDK [...]
+  "__html": "<h1>后端部署文档</h1>\n<p>后端有2种部署方式,分别为自动化部署和编译源码部署</p>\n<h2>1、准备工作</h2>\n<p>请下载最新版本的安装包,下载地址: <a href=\"https://github.com/apache/incubator-dolphinscheduler/releases\">github下载</a></p>\n<h4>准备一: 基础软件安装(必装项请自行安装)</h4>\n<ul>\n<li>Mysql (5.5+) :  必装</li>\n<li><a href=\"https://www.oracle.com/technetwork/java/javase/downloads/index.html\">JDK</a> (1.8+) :  必装</li>\n<li>ZooKeeper (3.4.6+) :必装</li>\n<li>Hadoop (2.6+) :选装, 如果需要使用到资源上传功能,MapReduce任务提交则需要配置Hadoop(上传的资源文件目前保存在Hdfs上)</li>\n [...]
   "link": "/zh-cn/docs/user_doc/backend-deployment.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/user_doc/frontend-deployment.html b/zh-cn/docs/user_doc/frontend-deployment.html
index 51c4054..0db86e6 100644
--- a/zh-cn/docs/user_doc/frontend-deployment.html
+++ b/zh-cn/docs/user_doc/frontend-deployment.html
@@ -16,12 +16,12 @@
 <p>前端有3种部署方式,分别为自动化部署,手动部署和编译源码部署</p>
 <h2>1、准备工作</h2>
 <h4>下载安装包</h4>
-<p>请下载最新版本的安装包,下载地址: <a href="https://gitee.com/easyscheduler/EasyScheduler/attach_files/">码云下载</a> 或者 <a href="https://github.com/analysys/EasyScheduler/releases">github下载</a></p>
-<p>下载 escheduler-ui-x.x.x.tar.gz 后,解压<code>tar -zxvf escheduler-ui-x.x.x.tar.gz ./</code>后,进入<code>escheduler-ui</code>目录</p>
+<p>请下载最新版本的安装包,下载地址: <a href="https://github.com/analysys/EasyScheduler/releases">github下载</a></p>
+<p>下载 dolphinscheduler-ui-x.x.x.tar.gz 后,解压<code>tar -zxvf dolphinscheduler-ui-x.x.x.tar.gz ./</code>后,进入<code>dolphinscheduler-ui</code>目录</p>
 <h2>2、部署</h2>
 <p>以下两种方式任选其一部署即可,推荐自动化部署</p>
 <h3>2.1 自动化部署</h3>
-<p>在<code>escheduler-ui</code>目录下编辑安装文件<code>vi install-escheduler-ui.sh</code></p>
+<p>在<code>dolphinscheduler-ui</code>目录下编辑安装文件<code>vi install-dolphinscheduler-ui.sh</code></p>
 <p>更改前端访问端口和后端代理接口地址</p>
 <pre><code># 配置前端访问端口
 esc_proxy=&quot;8888&quot;
@@ -32,7 +32,7 @@ esc_proxy_port=&quot;http://192.168.xx.xx:12345&quot;
 <blockquote>
 <p>前端自动部署基于linux系统<code>yum</code>操作,部署之前请先安装更新<code>yum</code></p>
 </blockquote>
-<p>在该目录下执行<code>./install-escheduler-ui.sh</code></p>
+<p>在该目录下执行<code>./install-dolphinscheduler-ui.sh</code></p>
 <h3>2.2 手动部署</h3>
 <p>安装epel源 <code>yum install epel-release -y</code></p>
 <p>安装Nginx <code>yum install nginx -y</code></p>
@@ -53,7 +53,7 @@ esc_proxy_port=&quot;http://192.168.xx.xx:12345&quot;
         root   /xx/dist; # 上面前端解压的dist目录地址(自行修改)
         index  index.html index.html;
     }
-    location /escheduler {
+    location /dolphinscheduler {
         proxy_pass http://192.168.xx.xx:12345; # 接口地址(自行修改)
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
diff --git a/zh-cn/docs/user_doc/frontend-deployment.json b/zh-cn/docs/user_doc/frontend-deployment.json
index fdef7e6..47d88f7 100644
--- a/zh-cn/docs/user_doc/frontend-deployment.json
+++ b/zh-cn/docs/user_doc/frontend-deployment.json
@@ -1,6 +1,6 @@
 {
   "filename": "frontend-deployment.md",
-  "__html": "<h1>前端部署文档</h1>\n<p>前端有3种部署方式,分别为自动化部署,手动部署和编译源码部署</p>\n<h2>1、准备工作</h2>\n<h4>下载安装包</h4>\n<p>请下载最新版本的安装包,下载地址: <a href=\"https://gitee.com/easyscheduler/EasyScheduler/attach_files/\">码云下载</a> 或者 <a href=\"https://github.com/analysys/EasyScheduler/releases\">github下载</a></p>\n<p>下载 escheduler-ui-x.x.x.tar.gz 后,解压<code>tar -zxvf escheduler-ui-x.x.x.tar.gz ./</code>后,进入<code>escheduler-ui</code>目录</p>\n<h2>2、部署</h2>\n<p>以下两种方式任选其一部署即可,推荐自动化部署</p>\n<h3>2.1 自动化部署</h3>\n<p>在<code>e [...]
+  "__html": "<h1>前端部署文档</h1>\n<p>前端有3种部署方式,分别为自动化部署,手动部署和编译源码部署</p>\n<h2>1、准备工作</h2>\n<h4>下载安装包</h4>\n<p>请下载最新版本的安装包,下载地址: <a href=\"https://github.com/analysys/EasyScheduler/releases\">github下载</a></p>\n<p>下载 dolphinscheduler-ui-x.x.x.tar.gz 后,解压<code>tar -zxvf dolphinscheduler-ui-x.x.x.tar.gz ./</code>后,进入<code>dolphinscheduler-ui</code>目录</p>\n<h2>2、部署</h2>\n<p>以下两种方式任选其一部署即可,推荐自动化部署</p>\n<h3>2.1 自动化部署</h3>\n<p>在<code>dolphinscheduler-ui</code>目录下编辑安装文件<code>vi install-dolphinschedule [...]
   "link": "/zh-cn/docs/user_doc/frontend-deployment.html",
   "meta": {}
 }
\ No newline at end of file
diff --git a/zh-cn/docs/user_doc/quick-start.html b/zh-cn/docs/user_doc/quick-start.html
index 611d5ad..8e24657 100644
--- a/zh-cn/docs/user_doc/quick-start.html
+++ b/zh-cn/docs/user_doc/quick-start.html
@@ -16,7 +16,7 @@
 <ul>
 <li>管理员用户登录
 <blockquote>
-<p>地址:192.168.xx.xx:8888 用户名密码:admin/escheduler123</p>
+<p>地址:192.168.xx.xx:8888 用户名密码:admin/dolphinscheduler123</p>
 </blockquote>
 </li>
 </ul>
diff --git a/zh-cn/docs/user_doc/quick-start.json b/zh-cn/docs/user_doc/quick-start.json
index 84ca69b..f23bc83 100644
--- a/zh-cn/docs/user_doc/quick-start.json
+++ b/zh-cn/docs/user_doc/quick-start.json
@@ -1,6 +1,6 @@
 {
   "filename": "quick-start.md",
-  "__html": "<h1>快速上手</h1>\n<ul>\n<li>管理员用户登录\n<blockquote>\n<p>地址:192.168.xx.xx:8888 用户名密码:admin/escheduler123</p>\n</blockquote>\n</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/login.jpg\" width=\"60%\" />\n </p>\n<ul>\n<li>创建队列</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/create-queue.png\" width=\"60%\" />\n </p>\n<ul>\n<li>创建租户</li>\n</ul>\n   <p align=\"center\">\n [...]
+  "__html": "<h1>快速上手</h1>\n<ul>\n<li>管理员用户登录\n<blockquote>\n<p>地址:192.168.xx.xx:8888 用户名密码:admin/dolphinscheduler123</p>\n</blockquote>\n</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/login.jpg\" width=\"60%\" />\n </p>\n<ul>\n<li>创建队列</li>\n</ul>\n<p align=\"center\">\n   <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/create-queue.png\" width=\"60%\" />\n </p>\n<ul>\n<li>创建租户</li>\n</ul>\n   <p align=\"cente [...]
   "link": "/zh-cn/docs/user_doc/quick-start.html",
   "meta": {}
 }
\ No newline at end of file