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

lidongdai pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler-website.git

commit 4596fe80488a4e371f253e64f79fa324e81b9970
Author: baoliang <[email protected]>
AuthorDate: Wed Nov 6 18:19:06 2019 +0800

    remove release notes.
---
 docs/en-us/developer_guide/architecture-design.md | 16 +++---
 docs/en-us/release/1.0.1-release.md               | 16 ------
 docs/en-us/release/1.0.2-release.md               | 49 ------------------
 docs/en-us/release/1.0.3-release.md               | 30 -----------
 docs/en-us/release/1.0.4-release.md               |  2 -
 docs/en-us/release/1.0.5-release.md               |  2 -
 docs/en-us/release/1.1.0-release.md               | 55 --------------------
 docs/zh-cn/release/1.0.1-release.md               | 16 ------
 docs/zh-cn/release/1.0.2-release.md               | 49 ------------------
 docs/zh-cn/release/1.0.3-release.md               | 30 -----------
 docs/zh-cn/release/1.0.4-release.md               | 28 ----------
 docs/zh-cn/release/1.0.5-release.md               | 23 ---------
 docs/zh-cn/release/1.1.0-release.md               | 63 -----------------------
 13 files changed, 8 insertions(+), 371 deletions(-)

diff --git a/docs/en-us/developer_guide/architecture-design.md 
b/docs/en-us/developer_guide/architecture-design.md
index e1c8f01..50b3c89 100755
--- a/docs/en-us/developer_guide/architecture-design.md
+++ b/docs/en-us/developer_guide/architecture-design.md
@@ -81,7 +81,7 @@ Before explaining the architecture of the schedule system, 
let us first understa
      - **ZooKeeper**
 
        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.
+       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.
 
      - **Task Queue**
 
@@ -132,11 +132,11 @@ Problems in the design of centralized :
 - The core design of decentralized design is that there is no "manager" that 
is different from other nodes in the entire distributed system, so there is no 
single point of failure problem. However, since there is no "manager" node, 
each node needs to communicate with other nodes to get the necessary machine 
information, and the unreliable line of distributed system communication 
greatly increases the difficulty of implementing the above functions.
 - 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 "meetings" to elect new "managers". Go to preside over the work. The most 
typical case is the Etcd implemented in ZooKeeper and Go.
 
-- 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.
+- 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.
 
 #####  二、Distributed lock practice
 
-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.
+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.
 
 1. The core process algorithm for obtaining distributed locks is as follows
 
@@ -144,7 +144,7 @@ EasyScheduler uses ZooKeeper distributed locks to implement 
only one Master to e
    <img 
src="https://analysys.github.io/easyscheduler_docs_cn/images/distributed_lock.png";
 alt="Get Distributed Lock Process" width="50%" />
  </p>
 
-2. Scheduler thread distributed lock implementation flow chart in 
EasyScheduler:
+2. Scheduler thread distributed lock implementation flow chart in 
DolphinScheduler:
 
  <p align="center">
    <img 
src="https://analysys.github.io/easyscheduler_docs_cn/images/distributed_lock_procss.png";
 alt="Get Distributed Lock Process" width="50%" />
@@ -180,7 +180,7 @@ Fault tolerance is divided into service fault tolerance and 
task retry. Service
 Service fault tolerance design relies on ZooKeeper's Watcher mechanism. The 
implementation principle is as follows:
 
  <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>
 
 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.
@@ -193,7 +193,7 @@ The Master monitors the directories of other Masters and 
Workers. If the remove
    <img 
src="https://analysys.github.io/easyscheduler_docs_cn/images/fault-tolerant_master.png";
 alt="Master Fault Tolerance Flowchart" width="40%" />
  </p>
 
-After the ZooKeeper Master is fault-tolerant, it is rescheduled by the 
Scheduler thread in EasyScheduler. It traverses the DAG to find the "Running" 
and "Submit Successful" tasks, and monitors the status of its task instance for 
the "Running" 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.
+After the ZooKeeper Master is fault-tolerant, it is rescheduled by the 
Scheduler thread in DolphinScheduler. It traverses the DAG to find the 
"Running" and "Submit Successful" tasks, and monitors the status of its task 
instance for the "Running" 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.
 
 
 
@@ -253,7 +253,7 @@ In the early scheduling design, if there is no priority 
design and fair scheduli
 - Since the Web (UI) and Worker are not necessarily on the same machine, 
viewing the log is not as it is for querying local files. There are two options:
   - Put the logs on the ES search engine
   - Obtain remote log information through gRPC communication
-- Considering the lightweightness of EasyScheduler as much as possible, gRPC 
was chosen to implement remote access log information.
+- Considering the lightweightness of DolphinScheduler as much as possible, 
gRPC was chosen to implement remote access log information.
 
  <p align="center">
    <img src="https://analysys.github.io/easyscheduler_docs_cn/images/grpc.png"; 
alt="grpc remote access" width="50%" />
@@ -313,4 +313,4 @@ Public class TaskLogFilter extends Filter<ILoggingEvent {
 
 ### summary
 
-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
\ No newline at end of file
+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
\ No newline at end of file
diff --git a/docs/en-us/release/1.0.1-release.md 
b/docs/en-us/release/1.0.1-release.md
deleted file mode 100755
index 4cdd85f..0000000
--- a/docs/en-us/release/1.0.1-release.md
+++ /dev/null
@@ -1,16 +0,0 @@
-DolphinScheduler Release 1.0.1(Not Apache Release)
-===
-Easy Scheduler 1.0.1 is the second version in the 1.x series. The update is as 
follows:
-
-- 1,outlook TSL email support
-- 2,servlet and protobuf jar conflict resolution
-- 3,create a tenant and establish a Linux user at the same time
-- 4,the re-run time is negative
-- 5,stand-alone and cluster can be deployed with one click of install.sh
-- 6,queue support interface added
-- 7,escheduler.t_escheduler_queue added create_time and update_time fields
-
-
-
-
-
diff --git a/docs/en-us/release/1.0.2-release.md 
b/docs/en-us/release/1.0.2-release.md
deleted file mode 100755
index 705d579..0000000
--- a/docs/en-us/release/1.0.2-release.md
+++ /dev/null
@@ -1,49 +0,0 @@
-DolphinScheduler Release 1.0.2(Not Apache Release)
-===
-DolphinScheduler 1.0.2 is the third version in the 1.x series. This version 
adds scheduling open interfaces, worker grouping (the machine group for which 
the specified task runs), task flow and service monitoring, and support for 
oracle, clickhouse, etc., as follows:
-
-New features:
-===
-- [[EasyScheduler-79](https://github.com/analysys/EasyScheduler/issues/79)] 
scheduling the open interface through the token mode, which can be operated 
through the api.
-- [[EasyScheduler-138](https://github.com/analysys/EasyScheduler/issues/138)] 
can specify the machine (group) where the task runs.
-- [[EasyScheduler-139](https://github.com/analysys/EasyScheduler/issues/139)] 
task Process Monitoring and Master, Worker, Zookeeper Operation Status 
Monitoring
-- [[EasyScheduler-140](https://github.com/analysys/EasyScheduler/issues/140)] 
workflow Definition - Increase Process Timeout Alarm
-- [[EasyScheduler-134](https://github.com/analysys/EasyScheduler/issues/134)] 
task type supports Oracle, CLICKHOUSE, SQLSERVER, IMPALA
-- [[EasyScheduler-136](https://github.com/analysys/EasyScheduler/issues/136)]  
sql task node can independently select CC mail users
-- [[EasyScheduler-141](https://github.com/analysys/EasyScheduler/issues/141)] 
user Management—Users can bind queues. The user queue level is higher than the 
tenant queue level. If the user queue is empty, look for the tenant queue.
-
-
-
-Enhanced:
-===
-- [[EasyScheduler-154](https://github.com/analysys/EasyScheduler/issues/154)] 
Tenant code allows encoding of pure numbers or underscores
-
-
-Repair:
-===
-- [[EasyScheduler-135](https://github.com/analysys/EasyScheduler/issues/135)] 
Python task can specify python version
-
-- [[EasyScheduler-125](https://github.com/analysys/EasyScheduler/issues/125)] 
The mobile phone number in the user account does not recognize the opening of 
Unicom's latest number 166
-
-- [[EasyScheduler-178](https://github.com/analysys/EasyScheduler/issues/178)] 
Fix subtle spelling mistakes in ProcessDao
-
-- [[EasyScheduler-129](https://github.com/analysys/EasyScheduler/issues/129)] 
Tenant code, underlined and other special characters cannot pass the check.
-
-
-Thank:
-===
-Last but not least, no new version was born without the contributions of the 
following partners:
-
-Baoqi , chubbyjiang , coreychen , chgxtony, cmdares , datuzi , dingchao, 
fanguanqun , 风清扬, gaojun416 , googlechorme, hyperknob , hujiang75277381 , 
huanzui , kinssun, ivivi727 ,jimmy, jiangzhx , kevin5210 , lidongdai , lshmouse 
, lenboo, lyf198972 , lgcareer , lzy305 ,  moranrr ,  millionfor , mazhong8808, 
programlief, qiaozhanwei , roy110 , swxchappy , sherlock111 , samz406 , 
swxchappy, qq389401879 , lzy305,  vkingnew, William-GuoWei , woniulinux, 
yyl861, zhangxin1988, yangjiajun2014, ya [...]
-
-And many enthusiastic partners in the WeChat group! Thank you very much!
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/en-us/release/1.0.3-release.md 
b/docs/en-us/release/1.0.3-release.md
deleted file mode 100755
index 58c7dd6..0000000
--- a/docs/en-us/release/1.0.3-release.md
+++ /dev/null
@@ -1,30 +0,0 @@
-DolphinScheduler Release 1.0.3(Not Apache Release)
-===
-DolphinScheduler 1.0.3 is the fourth version in the 1.x series.
-
-Enhanced:
-===
--  
[[EasyScheduler-482]](https://github.com/analysys/EasyScheduler/issues/482)sql 
task mail header added support for custom variables
--  
[[EasyScheduler-483]](https://github.com/analysys/EasyScheduler/issues/483)sql 
task failed to send mail, then this sql task is failed
--  
[[EasyScheduler-484]](https://github.com/analysys/EasyScheduler/issues/484)modify
 the replacement rule of the custom variable in the sql task, and support the 
replacement of multiple single quotes and double quotes.
--   
[[EasyScheduler-485]](https://github.com/analysys/EasyScheduler/issues/485)when 
creating a resource file, increase the verification that the resource file 
already exists on hdfs
-
-Repair:
-===
--  [[EasyScheduler-198]](https://github.com/analysys/EasyScheduler/issues/198) 
the process definition list is sorted according to the timing status and update 
time
--  [[EasyScheduler-419]](https://github.com/analysys/EasyScheduler/issues/419) 
 fixes online creation of files, hdfs file is not created, but returns 
successfully
--  [[EasyScheduler-481] 
](https://github.com/analysys/EasyScheduler/issues/481)fixes the problem that 
the job does not exist at the same time.
--  [[EasyScheduler-425]](https://github.com/analysys/EasyScheduler/issues/425) 
kills the kill of its child process when killing the task
--  [[EasyScheduler-422]](https://github.com/analysys/EasyScheduler/issues/422) 
fixed an issue where the update time and size were not updated when updating 
resource files
--  [[EasyScheduler-431]](https://github.com/analysys/EasyScheduler/issues/431) 
fixed an issue where deleting a tenant failed if hdfs was not started when the 
tenant was deleted
--  [[EasyScheduler-485]](https://github.com/analysys/EasyScheduler/issues/486) 
the shell process exits, the yarn state is not final and waits for judgment.
-
-Thank:
-===
-Last but not least, no new version was born without the contributions of the 
following partners:
-
-Baoqi, jimmy201602, samz406, petersear, millionfor, hyperknob, fanguanqun, 
yangqinlong, qq389401879, 
-feloxx, coding-now, hymzcn, nysyxxg, chgxtony 
-
-And many enthusiastic partners in the WeChat group! Thank you very much!
-
diff --git a/docs/en-us/release/1.0.4-release.md 
b/docs/en-us/release/1.0.4-release.md
deleted file mode 100755
index f7b1089..0000000
--- a/docs/en-us/release/1.0.4-release.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# 1.0.4 release
-
diff --git a/docs/en-us/release/1.0.5-release.md 
b/docs/en-us/release/1.0.5-release.md
deleted file mode 100755
index ce945e2..0000000
--- a/docs/en-us/release/1.0.5-release.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# 1.0.5 release
-
diff --git a/docs/en-us/release/1.1.0-release.md 
b/docs/en-us/release/1.1.0-release.md
deleted file mode 100755
index 3a3f57c..0000000
--- a/docs/en-us/release/1.1.0-release.md
+++ /dev/null
@@ -1,55 +0,0 @@
-DolphinScheduler Release 1.1.0(Not Apache Release)
-===
-DolphinScheduler 1.1.0 is the first release in the 1.1.x series.
-
-New features:
-===
-- [[EasyScheduler-391](https://github.com/analysys/EasyScheduler/issues/391)] 
run a process under a specified tenement user
-- [[EasyScheduler-288](https://github.com/analysys/EasyScheduler/issues/288)] 
feature/qiye_weixin
-- [[EasyScheduler-189](https://github.com/analysys/EasyScheduler/issues/189)] 
security support such as Kerberos
-- 
[[EasyScheduler-398](https://github.com/analysys/EasyScheduler/issues/398)]dministrator,
 with tenants (install.sh set default tenant), can create resources, projects 
and data sources (limited to one administrator)
-- 
[[EasyScheduler-293](https://github.com/analysys/EasyScheduler/issues/293)]click
 on the parameter selected when running the process, there is no place to view, 
no save
-- 
[[EasyScheduler-401](https://github.com/analysys/EasyScheduler/issues/401)]timing
 is easy to time every second. After the timing is completed, you can display 
the next trigger time on the page.
-- [[EasyScheduler-493](https://github.com/analysys/EasyScheduler/pull/493)]add 
datasource kerberos auth and FAQ modify and add resource upload s3
-
-
-Enhanced:
-===
-- [[EasyScheduler-227](https://github.com/analysys/EasyScheduler/issues/227)] 
upgrade spring-boot to 2.1.x and spring to 5.x
-- [[EasyScheduler-434](https://github.com/analysys/EasyScheduler/issues/434)] 
number of worker nodes zk and mysql are inconsistent
-- 
[[EasyScheduler-435](https://github.com/analysys/EasyScheduler/issues/435)]authentication
 of the mailbox format
-- [[EasyScheduler-441](https://github.com/analysys/EasyScheduler/issues/441)] 
prohibits running nodes from joining completed node detection
-- [[EasyScheduler-400](https://github.com/analysys/EasyScheduler/issues/400)] 
Home page, queue statistics are not harmonious, command statistics have no data
-- [[EasyScheduler-395](https://github.com/analysys/EasyScheduler/issues/395)] 
For fault-tolerant recovery processes, the status cannot be ** is running
-- [[EasyScheduler-529](https://github.com/analysys/EasyScheduler/issues/529)] 
optimize poll task from zookeeper
-- 
[[EasyScheduler-242](https://github.com/analysys/EasyScheduler/issues/242)]worker-server
 node gets task performance problem
-- 
[[EasyScheduler-352](https://github.com/analysys/EasyScheduler/issues/352)]worker
 grouping, queue consumption problem
-- 
[[EasyScheduler-461](https://github.com/analysys/EasyScheduler/issues/461)]view 
data source parameters, need to encrypt account password information
-- 
[[EasyScheduler-396](https://github.com/analysys/EasyScheduler/issues/396)]Dockerfile
 optimization, and associated Dockerfile and github to achieve automatic 
mirroring
-- 
[[EasyScheduler-389](https://github.com/analysys/EasyScheduler/issues/389)]service
 monitor cannot find the change of master/worker
-- 
[[EasyScheduler-511](https://github.com/analysys/EasyScheduler/issues/511)]support
 recovery process from stop/kill nodes.
-- 
[[EasyScheduler-399](https://github.com/analysys/EasyScheduler/issues/399)]HadoopUtils
 specifies user actions instead of **Deploying users
-
-Repair:
-===
-- [[EasyScheduler-394](https://github.com/analysys/EasyScheduler/issues/394)] 
When the master&worker is deployed on the same machine, if the master&worker 
service is restarted, the previously scheduled tasks cannot be scheduled.
-- 
[[EasyScheduler-469](https://github.com/analysys/EasyScheduler/issues/469)]Fix 
naming errors,monitor page
-- 
[[EasyScheduler-392](https://github.com/analysys/EasyScheduler/issues/392)]Feature
 request: fix email regex check
-- 
[[EasyScheduler-405](https://github.com/analysys/EasyScheduler/issues/405)]timed
 modification/addition page, start time and end time cannot be the same
-- 
[[EasyScheduler-517](https://github.com/analysys/EasyScheduler/issues/517)]complement
 - subworkflow - time parameter 
-- [[EasyScheduler-532](https://github.com/analysys/EasyScheduler/issues/532)] 
python node does not execute the problem
-- 
[[EasyScheduler-543](https://github.com/analysys/EasyScheduler/issues/543)]optimize
 datasource connection params safety
-- [[EasyScheduler-569](https://github.com/analysys/EasyScheduler/issues/569)] 
timed tasks can't really stop
-- 
[[EasyScheduler-463](https://github.com/analysys/EasyScheduler/issues/463)]mailbox
 verification does not support very suffixed mailboxes
-
-
-
-
-Thank:
-===
-Last but not least, no new version was born without the contributions of the 
following partners:
-
-Baoqi, jimmy201602, samz406, petersear, millionfor, hyperknob, fanguanqun, 
yangqinlong, qq389401879, chgxtony, Stanfan, lfyee, thisnew, hujiang75277381, 
sunnyingit, lgbo-ustc, ivivi, lzy305, JackIllkid, telltime, lipengbo2018, 
wuchunfu, telltime
-
-And many enthusiastic partners in the WeChat group! Thank you very much!
-
diff --git a/docs/zh-cn/release/1.0.1-release.md 
b/docs/zh-cn/release/1.0.1-release.md
deleted file mode 100755
index a771a5f..0000000
--- a/docs/zh-cn/release/1.0.1-release.md
+++ /dev/null
@@ -1,16 +0,0 @@
-Easy Scheduler Release 1.0.1(Not Apache Release)
-===
-Easy Scheduler 1.0.2是1.x系列中的第二个版本。更新内容具体如下:
-
-- 1,outlook TSL 发邮件支持
-- 2,servlet 和 protobuf jar冲突解决
-- 3,创建租户同时建立linux用户
-- 4,重跑时间负数
-- 5,单机和集群都可以使用install.sh一键部署
-- 6,队列支持界面添加
-- 7,escheduler.t_escheduler_queue 增加了create_time和update_time字段
-
-
-
-
-
diff --git a/docs/zh-cn/release/1.0.2-release.md 
b/docs/zh-cn/release/1.0.2-release.md
deleted file mode 100755
index 08b8408..0000000
--- a/docs/zh-cn/release/1.0.2-release.md
+++ /dev/null
@@ -1,49 +0,0 @@
-Easy Scheduler Release 1.0.2(Not Apache Release)
-===
-Easy Scheduler 
1.0.2是1.x系列中的第三个版本。此版本增加了调度开放接口、worker分组(指定任务运行的机器组)、任务流程及服务监控以及对oracle、clickhouse等支持,具体如下:
-
-新特性:
-===
-- [[EasyScheduler-79](https://github.com/analysys/EasyScheduler/issues/79)] 
调度通过token方式对外开放接口,可以通过api进行操作
-- [[EasyScheduler-138](https://github.com/analysys/EasyScheduler/issues/138)] 
可以指定任务运行的机器(组)
-- [[EasyScheduler-139](https://github.com/analysys/EasyScheduler/issues/139)] 
任务流程监控及Master、Worker、Zookeeper运行状态监控
-- [[EasyScheduler-140](https://github.com/analysys/EasyScheduler/issues/140)] 
工作流定义—增加流程超时报警
-- [[EasyScheduler-134](https://github.com/analysys/EasyScheduler/issues/134)] 
任务类型支持Oracle、CLICKHOUSE、SQLSERVER、IMPALA
-- [[EasyScheduler-136](https://github.com/analysys/EasyScheduler/issues/136)] 
Sql任务节点可以独立选取抄送邮件用户 
-- [[EasyScheduler-141](https://github.com/analysys/EasyScheduler/issues/141)] 
用户管理—用户可以绑定队列,用户队列级别高于租户队列级别,如果用户队列为空,则寻找租户队列 
-
-
-
-增强:
-===
-- [[EasyScheduler-154](https://github.com/analysys/EasyScheduler/issues/154)] 
租户编码允许纯数字或者下划线这种的编码
-
-
-修复:
-===
-- [[EasyScheduler-135](https://github.com/analysys/EasyScheduler/issues/135)] 
Python任务可以指定python版本
-
-- [[EasyScheduler-125](https://github.com/analysys/EasyScheduler/issues/125)] 
用户账号中手机号无法识别联通最新号码166开头
-
-- [[EasyScheduler-178](https://github.com/analysys/EasyScheduler/issues/178)] 
修复ProcessDao里细微的拼写错误 
-
-- [[EasyScheduler-129](https://github.com/analysys/EasyScheduler/issues/129)] 
租户管理中,租户编码带下划线等特殊字符无法通过校验 
-
-
-感谢:
-===
-最后但最重要的是,没有以下伙伴的贡献就没有新版本的诞生:
-
-Baoqi , chubbyjiang , coreychen , chgxtony, cmdares , datuzi , dingchao, 
fanguanqun , 风清扬, gaojun416 , googlechorme, hyperknob , hujiang75277381 , 
huanzui , kinssun, ivivi727 ,jimmy, jiangzhx , kevin5210 , lidongdai , lshmouse 
, lenboo, lyf198972 , lgcareer , lzy305 ,  moranrr ,  millionfor , mazhong8808, 
programlief, qiaozhanwei , roy110 , swxchappy , sherlock111 , samz406 , 
swxchappy, qq389401879 , lzy305,  vkingnew, William-GuoWei , woniulinux, 
yyl861, zhangxin1988, yangjiajun2014, ya [...]
-
-以及微信群里众多的热心伙伴!在此非常感谢!
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/zh-cn/release/1.0.3-release.md 
b/docs/zh-cn/release/1.0.3-release.md
deleted file mode 100755
index 02e5b41..0000000
--- a/docs/zh-cn/release/1.0.3-release.md
+++ /dev/null
@@ -1,30 +0,0 @@
-Easy Scheduler Release 1.0.3(Not Apache Release)
-===
-Easy Scheduler 1.0.3是1.x系列中的第四个版本。
-
-增强:
-===
--  
[[EasyScheduler-482]](https://github.com/analysys/EasyScheduler/issues/482)sql任务中的邮件标题增加了对自定义变量的支持
--  
[[EasyScheduler-483]](https://github.com/analysys/EasyScheduler/issues/483)sql任务中的发邮件失败,则此sql任务为失败
--  
[[EasyScheduler-484]](https://github.com/analysys/EasyScheduler/issues/484)修改sql任务中自定义变量的替换规则,支持多个单引号和双引号的替换
--  
[[EasyScheduler-485]](https://github.com/analysys/EasyScheduler/issues/485)创建资源文件时,增加对该资源文件是否在hdfs上已存在的验证
-
-修复:
-===
--  [[EasyScheduler-198]](https://github.com/analysys/EasyScheduler/issues/198) 
流程定义列表根据定时状态和更新时间进行排序
--  [[EasyScheduler-419]](https://github.com/analysys/EasyScheduler/issues/419) 
修复在线创建文件,hdfs文件未创建,却返回成功
--  
[[EasyScheduler-481]](https://github.com/analysys/EasyScheduler/issues/481)修复job不存在定时无法下线的问题
--  [[EasyScheduler-425]](https://github.com/analysys/EasyScheduler/issues/425) 
kill任务时增加对其子进程的kill
--  [[EasyScheduler-422]](https://github.com/analysys/EasyScheduler/issues/422) 
修复更新资源文件时更新时间和大小未更新的问题
--  [[EasyScheduler-431]](https://github.com/analysys/EasyScheduler/issues/431) 
修复删除租户时,如果未启动hdfs,则删除租户失败的问题
--  [[EasyScheduler-485]](https://github.com/analysys/EasyScheduler/issues/486) 
shell进程退出,yarn状态非终态等待判断
-
-感谢:
-===
-最后但最重要的是,没有以下伙伴的贡献就没有新版本的诞生:
-
-Baoqi, jimmy201602, samz406, petersear, millionfor, hyperknob, fanguanqun, 
yangqinlong, qq389401879, 
-feloxx, coding-now, hymzcn, nysyxxg, chgxtony 
-
-以及微信群里众多的热心伙伴!在此非常感谢!
-
diff --git a/docs/zh-cn/release/1.0.4-release.md 
b/docs/zh-cn/release/1.0.4-release.md
deleted file mode 100755
index 60a411b..0000000
--- a/docs/zh-cn/release/1.0.4-release.md
+++ /dev/null
@@ -1,28 +0,0 @@
-Easy Scheduler Release 1.0.4(Not Apache Release)
-===
-Easy Scheduler 1.0.4是1.x系列中的第五个版本。
-
-**修复**:
--  [[EasyScheduler-198]](https://github.com/analysys/EasyScheduler/issues/198) 
流程定义列表根据定时状态和更新时间进行排序
--  [[EasyScheduler-419]](https://github.com/analysys/EasyScheduler/issues/419) 
修复在线创建文件,hdfs文件未创建,却返回成功
--  
[[EasyScheduler-481]](https://github.com/analysys/EasyScheduler/issues/481)修复job不存在定时无法下线的问题
--  [[EasyScheduler-425]](https://github.com/analysys/EasyScheduler/issues/425) 
kill任务时增加对其子进程的kill
--  [[EasyScheduler-422]](https://github.com/analysys/EasyScheduler/issues/422) 
修复更新资源文件时更新时间和大小未更新的问题
--  [[EasyScheduler-431]](https://github.com/analysys/EasyScheduler/issues/431) 
修复删除租户时,如果未启动hdfs,则删除租户失败的问题
--  [[EasyScheduler-485]](https://github.com/analysys/EasyScheduler/issues/486) 
shell进程退出,yarn状态非终态等待判断
-
-**增强**:
--  
[[EasyScheduler-482]](https://github.com/analysys/EasyScheduler/issues/482)sql任务中的邮件标题增加了对自定义变量的支持
--  
[[EasyScheduler-483]](https://github.com/analysys/EasyScheduler/issues/483)sql任务中的发邮件失败,则此sql任务为失败
--  
[[EasyScheduler-484]](https://github.com/analysys/EasyScheduler/issues/484)修改sql任务中自定义变量的替换规则,支持多个单引号和双引号的替换
--  
[[EasyScheduler-485]](https://github.com/analysys/EasyScheduler/issues/485)创建资源文件时,增加对该资源文件是否在hdfs上已存在的验证
-
-
-感谢:
-===
-最后但最重要的是,没有以下伙伴的贡献就没有新版本的诞生(排名不分先后):
-
-Baoqi, jimmy201602, samz406, petersear, millionfor, hyperknob, fanguanqun, 
yangqinlong, qq389401879, 
-feloxx, coding-now, hymzcn, nysyxxg, chgxtony, lfyee, Crossoverrr, gj-zhang, 
sunnyingit, xianhu, zhengqiangtan
-
-以及微信群/钉钉群里众多的热心伙伴!在此非常感谢!
\ No newline at end of file
diff --git a/docs/zh-cn/release/1.0.5-release.md 
b/docs/zh-cn/release/1.0.5-release.md
deleted file mode 100755
index bddcfab..0000000
--- a/docs/zh-cn/release/1.0.5-release.md
+++ /dev/null
@@ -1,23 +0,0 @@
-Easy Scheduler Release 1.0.5(Not Apache Release)
-===
-Easy Scheduler 1.0.5是1.x系列中的第六个版本。
-
-增强:
-===
-- 
[[EasyScheduler-597]](https://github.com/analysys/EasyScheduler/issues/597)child
 process cannot extend father's receivers and cc
-
-修复
-===
-- 
[[EasyScheduler-516]](https://github.com/analysys/EasyScheduler/issues/516)The 
task instance of MR cannot stop in some cases
-- 
[[EasyScheduler-594]](https://github.com/analysys/EasyScheduler/issues/594)soft 
kill task 后 进程依旧存在(父进程 子进程) 
-
-
-感谢:
-===
-最后但最重要的是,没有以下伙伴的贡献就没有新版本的诞生:
-
-Baoqi, jimmy201602, samz406, petersear, millionfor, hyperknob, fanguanqun, 
yangqinlong, qq389401879, feloxx, coding-now, hymzcn, nysyxxg, chgxtony, 
gj-zhang, xianhu, sunnyingit,
-zhengqiangtan, chinashenkai
-
-以及微信群里众多的热心伙伴!在此非常感谢!
-
diff --git a/docs/zh-cn/release/1.1.0-release.md 
b/docs/zh-cn/release/1.1.0-release.md
deleted file mode 100755
index 9c12be4..0000000
--- a/docs/zh-cn/release/1.1.0-release.md
+++ /dev/null
@@ -1,63 +0,0 @@
-Easy Scheduler Release 1.1.0(Not Apache Release)
-===
-Easy Scheduler 1.1.0是1.1.x系列中的第一个版本。
-
-新特性:
-===
-- [[EasyScheduler-391](https://github.com/analysys/EasyScheduler/issues/391)] 
run a process under a specified tenement user
-- [[EasyScheduler-288](https://github.com/analysys/EasyScheduler/issues/288)] 
Feature/qiye_weixin
-- [[EasyScheduler-189](https://github.com/analysys/EasyScheduler/issues/189)] 
Kerberos等安全支持
-- 
[[EasyScheduler-398](https://github.com/analysys/EasyScheduler/issues/398)]管理员,有租户(install.sh设置默认租户),可以创建资源、项目和数据源(限制有一个管理员)
-- 
[[EasyScheduler-293](https://github.com/analysys/EasyScheduler/issues/293)]点击运行流程时候选择的参数,没有地方可查看,也没有保存
-- 
[[EasyScheduler-401](https://github.com/analysys/EasyScheduler/issues/401)]定时很容易定时每秒一次,定时完成以后可以在页面显示一下下次触发时间
-- [[EasyScheduler-493](https://github.com/analysys/EasyScheduler/pull/493)]add 
datasource kerberos auth and FAQ modify and add resource upload s3
-
-
-增强:
-===
-- [[EasyScheduler-227](https://github.com/analysys/EasyScheduler/issues/227)] 
upgrade spring-boot to 2.1.x and spring to 5.x
-- [[EasyScheduler-434](https://github.com/analysys/EasyScheduler/issues/434)] 
worker节点数量 zk和mysql中不一致
-- 
[[EasyScheduler-435](https://github.com/analysys/EasyScheduler/issues/435)]邮箱格式的验证
-- [[EasyScheduler-441](https://github.com/analysys/EasyScheduler/issues/441)] 
禁止运行节点加入已完成节点检测
-- [[EasyScheduler-400](https://github.com/analysys/EasyScheduler/issues/400)] 
首页页面,队列统计不和谐,命令统计无数据
-- [[EasyScheduler-395](https://github.com/analysys/EasyScheduler/issues/395)] 
对于容错恢复的流程,状态不能为 **正在运行
-- [[EasyScheduler-529](https://github.com/analysys/EasyScheduler/issues/529)] 
optimize poll task from zookeeper
-- 
[[EasyScheduler-242](https://github.com/analysys/EasyScheduler/issues/242)]worker-server节点获取任务性能问题
-- 
[[EasyScheduler-352](https://github.com/analysys/EasyScheduler/issues/352)]worker
 分组, 队列消费问题
-- 
[[EasyScheduler-461](https://github.com/analysys/EasyScheduler/issues/461)]查看数据源参数,需要加密账号密码信息
-- 
[[EasyScheduler-396](https://github.com/analysys/EasyScheduler/issues/396)]Dockerfile优化,并关联Dockerfile和github实现自动打镜像
-- 
[[EasyScheduler-389](https://github.com/analysys/EasyScheduler/issues/389)]service
 monitor cannot find the change of master/worker
-- 
[[EasyScheduler-511](https://github.com/analysys/EasyScheduler/issues/511)]support
 recovery process from stop/kill nodes.
-- 
[[EasyScheduler-399](https://github.com/analysys/EasyScheduler/issues/399)]HadoopUtils指定用户操作,而不是
 **部署用户
-- 
[[EasyScheduler-378](https://github.com/analysys/EasyScheduler/issues/378)]Mailbox
 regular match
-- 
[[EasyScheduler-625](https://github.com/analysys/EasyScheduler/issues/625)]EasyScheduler
 call shell "task instance not set host"
-- 
[[EasyScheduler-622](https://github.com/analysys/EasyScheduler/issues/622)]Front-end
 interface deployment k8s, background deployment big data cluster session error
-
-修复:
-===
-- [[EasyScheduler-394](https://github.com/analysys/EasyScheduler/issues/394)] 
master&worker部署在同一台机器上时,如果重启master&worker服务,会导致之前调度的任务无法继续调度
-- 
[[EasyScheduler-469](https://github.com/analysys/EasyScheduler/issues/469)]Fix 
naming errors,monitor page
-- 
[[EasyScheduler-392](https://github.com/analysys/EasyScheduler/issues/392)]Feature
 request: fix email regex check
-- 
[[EasyScheduler-405](https://github.com/analysys/EasyScheduler/issues/405)]定时修改/添加页面,开始时间和结束时间不能相同
-- 
[[EasyScheduler-517](https://github.com/analysys/EasyScheduler/issues/517)]补数 - 
子工作流 - 时间参数 
-- 
[[EasyScheduler-532](https://github.com/analysys/EasyScheduler/issues/532)]python节点不执行的问题
 
-- 
[[EasyScheduler-543](https://github.com/analysys/EasyScheduler/issues/543)]optimize
 datasource connection params safety
-- 
[[EasyScheduler-569](https://github.com/analysys/EasyScheduler/issues/569)]定时任务无法真正停止
-- 
[[EasyScheduler-463](https://github.com/analysys/EasyScheduler/issues/463)]邮箱验证不支持非常见后缀邮箱
-- 
[[EasyScheduler-650](https://github.com/analysys/EasyScheduler/issues/650)]Creating
 a hive data source without a principal will cause the connection to fail
-- 
[[EasyScheduler-641](https://github.com/analysys/EasyScheduler/issues/641)]The 
cellphone is not supported for 199 telecom segment when create a user
-- 
[[EasyScheduler-627](https://github.com/analysys/EasyScheduler/issues/627)]Different
 sql node task logs in parallel in the same workflow will be mixed
-- 
[[EasyScheduler-655](https://github.com/analysys/EasyScheduler/issues/655)]when 
deploy a spark task,the tentant queue not empty,set with a empty queue name 
-- 
[[EasyScheduler-667](https://github.com/analysys/EasyScheduler/issues/667)]HivePreparedStatement
 can't print the actual SQL executed 
-
-
-
-
-感谢:
-===
-最后但最重要的是,没有以下伙伴的贡献就没有新版本的诞生:
-
-Baoqi, jimmy201602, samz406, petersear, millionfor, hyperknob, fanguanqun, 
yangqinlong, qq389401879, chgxtony, Stanfan, lfyee, thisnew, hujiang75277381, 
sunnyingit, lgbo-ustc, ivivi, lzy305, JackIllkid, telltime, lipengbo2018, 
wuchunfu, telltime, chenyuan9028, zhangzhipeng621, thisnew, 307526982,  
crazycarry
-
-以及微信群里众多的热心伙伴!在此非常感谢!
-

Reply via email to