This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git
The following commit(s) were added to refs/heads/master by this push:
new ef7ef2c Remove disclaimer and incubating (#325)
ef7ef2c is described below
commit ef7ef2ce9f8867e427fac97a4804601a56fd7412
Author: Shiwen Cheng <[email protected]>
AuthorDate: Wed Apr 21 17:36:12 2021 +0800
Remove disclaimer and incubating (#325)
* Remove disclaimer
* Rename incubator-dolphinscheduler to dolphinscheduler
* Remove incubating and incubator in home index page
* Remove unused download.md in docs
* Fix some download and KEYS link
* Improve feedback
---
community/en-us/development/contribute.md | 4 +-
community/en-us/development/document.md | 4 +-
community/en-us/development/issue.md | 2 +-
community/en-us/development/pull-request.md | 4 +-
community/en-us/development/submit-code.md | 6 +-
community/en-us/release.md | 48 ++---
community/en-us/team.md | 6 +-
community/zh-cn/development/contribute.md | 4 +-
community/zh-cn/development/document.md | 4 +-
community/zh-cn/development/issue.md | 2 +-
community/zh-cn/development/pull-request.md | 4 +-
community/zh-cn/development/submit-code.md | 6 +-
community/zh-cn/release.md | 50 +++--
development/en-us/development-environment-setup.md | 2 +-
docs/en-us/1.3.4/user_doc/build-docker-image.md | 4 +-
docs/en-us/1.3.4/user_doc/docker-deployment.md | 2 +-
docs/en-us/1.3.5/user_doc/build-docker-image.md | 4 +-
docs/en-us/1.3.5/user_doc/docker-deployment.md | 2 +-
docs/en-us/1.3.5/user_doc/kubernetes-deployment.md | 4 +-
docs/en-us/release/download.md | 56 ------
docs/en-us/release/faq.md | 6 +-
docs/en-us/user_doc/deployment.md | 218 ---------------------
docs/en-us/user_doc/upgrade.md | 42 ----
docs/zh-cn/1.3.4/user_doc/build-docker-image.md | 4 +-
docs/zh-cn/1.3.4/user_doc/docker-deployment.md | 2 +-
docs/zh-cn/1.3.5/user_doc/build-docker-image.md | 4 +-
docs/zh-cn/1.3.5/user_doc/docker-deployment.md | 6 +-
docs/zh-cn/1.3.5/user_doc/kubernetes-deployment.md | 8 +-
docs/zh-cn/release/download.md | 56 ------
docs/zh-cn/release/faq.md | 6 +-
download/en-us/download.md | 2 +-
download/zh-cn/download.md | 2 +-
site_config/community.jsx | 12 +-
site_config/home.jsx | 8 +-
site_config/site.js | 10 +-
src/components/footer/index.jsx | 2 -
src/pages/home/index.jsx | 7 +-
src/pages/home/index.scss | 25 ---
38 files changed, 109 insertions(+), 529 deletions(-)
diff --git a/community/en-us/development/contribute.md
b/community/en-us/development/contribute.md
index f8e1402..35079f6 100644
--- a/community/en-us/development/contribute.md
+++ b/community/en-us/development/contribute.md
@@ -3,7 +3,7 @@
First of all, thank you very much for choosing and using DolphinScheduler, and
welcome to join the DolphinScheduler family!
We encourage any form of participation in the community that will eventually
become Committer or PPMC Such as:
-* Problems will be encountered via github on the
[issue](https://github.com/apache/incubator-dolphinscheduler/issues) form
feedback out.
+* Problems will be encountered via github on the
[issue](https://github.com/apache/dolphinscheduler/issues) form feedback out.
* Answer the issue questions that others are asking.
* Help improve the documentation.
* Help your project add test cases.
@@ -35,6 +35,6 @@ If you want to implement a Feature or fix a Bug. Please refer
to the following:
* If you want to develop a Feature, first reply to the Issue associated with
that feature, indicating that you are currently working on it. And set yourself
a "deadline" when to Submit the Feature, and add it in the reply comment.
* It's a good idea to find a mentor (or an instructor) in the core
contributors who gives immediate feedback on design and functional
implementation.
* You should create a new branch to start your work, to get the name of the
branch refer to the [Submit Guide-Pull Request Notice](pull-request.md). For
example, if you want to complete the feature and submit Issue 111, your branch
name should be feature-111. The feature name can be determined after discussion
with the instructor.
-* When you're done, send a Pull Request to incubator-dolphinscheduler, please
refer to the《[Submit Guide-Submit Pull Request Process](submit-code.md)》
+* When you're done, send a Pull Request to dolphinscheduler, please refer to
the《[Submit Guide-Submit Pull Request Process](submit-code.md)》
If you want to submit a Pull Request to complete a Feature or fix a Bug, it is
recommended that you start with the `good first issue`, `easy-to-fix` issues,
complete a small function to submit, do not change too many files at a time,
changing too many files will also put a lot of pressure on Reviewers, it is
recommended to submit them through multiple Pull Requests, not all at once.
\ No newline at end of file
diff --git a/community/en-us/development/document.md
b/community/en-us/development/document.md
index 6d228f0..a232938 100644
--- a/community/en-us/development/document.md
+++ b/community/en-us/development/document.md
@@ -4,12 +4,12 @@ Good documentation is critical for any type of software. Any
contribution that c
### Get the document project.
-Documentation for the DolphinScheduler project is maintained in a separate
[git repository](https://github.com/apache/incubator-dolphinscheduler-website).
+Documentation for the DolphinScheduler project is maintained in a separate
[git repository](https://github.com/apache/dolphinscheduler-website).
First you need to fork the document project into your own github repository,
and then clone the document to your local computer.
```
-git clone
https://github.com/<your-github-user-name>/incubator-dolphinscheduler-website
+git clone https://github.com/<your-github-user-name>/dolphinscheduler-website
```
### The document environment.
diff --git a/community/en-us/development/issue.md
b/community/en-us/development/issue.md
index 269582e..da3129c 100644
--- a/community/en-us/development/issue.md
+++ b/community/en-us/development/issue.md
@@ -112,7 +112,7 @@ The `Module Name` is as follows:
### Issue content template
-https://github.com/apache/incubator-dolphinscheduler/tree/dev/.github/ISSUE_TEMPLATE
+https://github.com/apache/dolphinscheduler/tree/dev/.github/ISSUE_TEMPLATE
### Contributor
diff --git a/community/en-us/development/pull-request.md
b/community/en-us/development/pull-request.md
index 61c8d72..608ab79 100644
--- a/community/en-us/development/pull-request.md
+++ b/community/en-us/development/pull-request.md
@@ -62,9 +62,9 @@ How to configure checkstyle and code style in dolphin
scheduler:
1.checkstyle and code-style configuration files
-checkstyle:
https://github.com/apache/incubator-dolphinscheduler/blob/dev/style/checkstyle.xml
+checkstyle:
https://github.com/apache/dolphinscheduler/blob/dev/style/checkstyle.xml
-code-style:
https://github.com/apache/incubator-dolphinscheduler/blob/dev/style/intellij-java-code-style.xml
+code-style:
https://github.com/apache/dolphinscheduler/blob/dev/style/intellij-java-code-style.xml
2.checkstyle configuration
diff --git a/community/en-us/development/submit-code.md
b/community/en-us/development/submit-code.md
index 6b88c3f..f3af348 100644
--- a/community/en-us/development/submit-code.md
+++ b/community/en-us/development/submit-code.md
@@ -1,6 +1,6 @@
#### How to submit
-* First from the remote repository
*https://github.com/apache/incubator-dolphinscheduler.git* fork a copy of the
code into your own repository
+* First from the remote repository
*https://github.com/apache/dolphinscheduler.git* fork a copy of the code into
your own repository
* There are currently three branches in the remote repository:
* master normal delivery branch
@@ -11,10 +11,10 @@
* Clone your repository to your local
- `git clone https://github.com/apache/incubator-dolphinscheduler.git`
+ `git clone https://github.com/apache/dolphinscheduler.git`
* Add remote repository address, named upstream
- `git remote add upstream
https://github.com/apache/incubator-dolphinscheduler.git`
+ `git remote add upstream https://github.com/apache/dolphinscheduler.git`
* View repository
`git remote -v`
diff --git a/community/en-us/release.md b/community/en-us/release.md
index a565b79..00967dd 100644
--- a/community/en-us/release.md
+++ b/community/en-us/release.md
@@ -124,16 +124,16 @@ For encryption settings, please see
[here](http://maven.apache.org/guides/mini/g
### Update Release Notes
```
-https://github.com/apache/incubator-dolphinscheduler/blob/dev/RELEASE-NOTES.md
+https://github.com/apache/dolphinscheduler/blob/dev/RELEASE-NOTES.md
```
### Create Release Branch
-Suppose DolphinScheduler source codes downloaded from github is under
`~/incubator-dolphinscheduler/` directory and the version to be released is
`${RELEASE.VERSION}`.
+Suppose DolphinScheduler source codes downloaded from github is under
`~/dolphinscheduler/` directory and the version to be released is
`${RELEASE.VERSION}`.
Create `${RELEASE.VERSION}-release` branch, where all the following operations
are performed.
```shell
-cd ~/incubator-dolphinscheduler/
+cd ~/dolphinscheduler/
git pull
git checkout -b ${RELEASE.VERSION}-release
git push origin ${RELEASE.VERSION}-release
@@ -226,10 +226,8 @@ cd ~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
Add source code packages, binary packages and executable binary packages to
SVN working directory.
```shell
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.zip
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.zip.asc
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz.asc
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
+cp -f ~/dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
+cp -f ~/dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz.asc
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
```
### Generate sign files
@@ -260,7 +258,7 @@ First, import releaser's public key.
Import KEYS from SVN repository to local. (The releaser does not need to
import again; the checking assistant needs to import it, with the user name
filled as the releaser's. )
```shell
-curl https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/KEYS >>
KEYS
+curl https://dist.apache.org/repos/dist/dev/dolphinscheduler/KEYS >> KEYS
gpg --import KEYS
gpg --edit-key "${GPG username of releaser}"
> trust
@@ -294,8 +292,6 @@ gpg --verify
apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinschedu
Decompress `apache-dolphinscheduler-incubating-${RELEASE.VERSION}-src.zip` and
check the following items:
* Check whether source tarball is oversized for including nonessential files
-* The release files have the word `incubating` in their name
-* `DISCLAIMER` file exists
* `LICENSE` and `NOTICE` files exist
* Correct year in `NOTICE` file
* There is only text files but no binary files
@@ -309,8 +305,6 @@ Decompress
`apache-dolphinscheduler-incubating-${RELEASE.VERSION}-src.zip` and c
Decompress
`apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinscheduler-bin.tar.gz`
to check the following items:
-- The release files have the word `incubating` in their name
-- `DISCLAIMER` file exists
- `LICENSE` and `NOTICE` files exist
- Correct year in `NOTICE` file
- Check the third party dependency license:
@@ -354,25 +348,25 @@ Hello DolphinScheduler Community,
This is a call for vote to release Apache DolphinScheduler (Incubating)
version ${RELEASE.VERSION}
Release notes:
-https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/ReleaseNotes.md
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/ReleaseNotes.md
The release candidates:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/${RELEASE.VERSION}/
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/
Maven 2 staging repository:
https://repository.apache.org/content/repositories/${STAGING.REPOSITORY}/org/apache/dolphinscheduler/
Git tag for the release:
-https://github.com/apache/incubator-dolphinscheduler/tree/${RELEASE.VERSION}
+https://github.com/apache/dolphinscheduler/tree/${RELEASE.VERSION}
Release Commit ID:
-https://github.com/apache/incubator-dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
+https://github.com/apache/dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
Keys to verify the Release Candidate:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/KEYS
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/KEYS
Look at here for how to verify this release candidate:
-https://github.com/apache/incubator-dolphinscheduler/blob/1.2.0-release/README.md
+https://github.com/apache/dolphinscheduler/blob/1.2.0-release/README.md
The vote will be open for at least 72 hours or until necessary number of votes
are reached.
@@ -454,25 +448,25 @@
https://lists.apache.org/thread.html/xxxxxxxxxxxxxxxxxxxxxxx
https://lists.apache.org/thread.html/xxxxxxxxxxxxxxxxxxxxxxx
Release notes:
-https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/ReleaseNotes.md
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/ReleaseNotes.md
The release candidates:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/${RELEASE.VERSION}/
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/
Maven 2 staging repository:
https://repository.apache.org/content/repositories/${STAGING.REPOSITORY}/org/apache/dolphinscheduler/
Git tag for the release:
-https://github.com/apache/incubator-dolphinscheduler/tree/${RELEASE.VERSION}
+https://github.com/apache/dolphinscheduler/tree/${RELEASE.VERSION}
Release Commit ID:
-https://github.com/apache/incubator-dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
+https://github.com/apache/dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
Keys to verify the Release Candidate:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/KEYS
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/KEYS
Look at here for how to verify this release candidate:
-https://github.com/apache/incubator-dolphinscheduler/blob/1.2.0-release/README.md
+https://github.com/apache/dolphinscheduler/blob/1.2.0-release/README.md
The vote will be open for at least 72 hours or until necessary number of votes
are reached.
Please vote accordingly:
@@ -574,13 +568,13 @@ dedicated to solving the complex task dependencies in
data processing, making th
Download Links:
https://dolphinscheduler.apache.org/en-us/download/download.html
-Release Notes:
https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/ReleaseNotes.md
+Release Notes:
https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/ReleaseNotes.md
Website: https://dolphinscheduler.apache.org/
DolphinScheduler Resources:
-- Issue: https://github.com/apache/incubator-dolphinscheduler/issues/
+- Issue: https://github.com/apache/dolphinscheduler/issues/
- Mailing list: [email protected]
-- Documents:
https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/README.md
+- Documents:
https://github.com/apache/dolphinscheduler/blob/${RELEASE.VERSION}/README.md
```
diff --git a/community/en-us/team.md b/community/en-us/team.md
index 981429e..96c6de9 100644
--- a/community/en-us/team.md
+++ b/community/en-us/team.md
@@ -56,9 +56,9 @@ The DolphinScheduler team is comprised of Members and
Contributors. Members have
DolphinScheduler have hundreds of contributors, you could find them in our
repositories' contribution list.
-- [DolphinScheduler main
repository](https://github.com/apache/incubator-dolphinscheduler/graphs/contributors)
-- [DolphinScheduler
website](https://github.com/apache/incubator-dolphinscheduler-website/graphs/contributors)
-- [DolphinScheduler maven
plugin](https://github.com/apache/incubator-dolphinscheduler-maven-plugin/graphs/contributors)
+- [DolphinScheduler main
repository](https://github.com/apache/dolphinscheduler/graphs/contributors)
+- [DolphinScheduler
website](https://github.com/apache/dolphinscheduler-website/graphs/contributors)
+- [DolphinScheduler maven
plugin](https://github.com/apache/dolphinscheduler-maven-plugin/graphs/contributors)
## Becoming a Committer
diff --git a/community/zh-cn/development/contribute.md
b/community/zh-cn/development/contribute.md
index 18fc5f8..c43ab18 100644
--- a/community/zh-cn/development/contribute.md
+++ b/community/zh-cn/development/contribute.md
@@ -3,7 +3,7 @@
首先非常感谢大家选择和使用 DolphinScheduler,非常欢迎大家加入 DolphinScheduler 大家庭,融入开源世界!
我们鼓励任何形式的参与社区,最终成为 Committer 或 PPMC,如:
-* 将遇到的问题通过 github 上
[issue](https://github.com/apache/incubator-dolphinscheduler/issues) 的形式反馈出来
+* 将遇到的问题通过 github 上 [issue](https://github.com/apache/dolphinscheduler/issues)
的形式反馈出来
* 回答别人遇到的 issue 问题
* 帮助完善文档
* 帮助项目增加测试用例
@@ -36,7 +36,7 @@
* 如果想要开发实现某个 Feature 功能,请先回复该功能所关联的 Issue,表明你当前正在这个 Issue 上工作。 并在回复的时候为自己设置一个
**deadline**,并添加的回复内容中。
* 最好在核心贡献者找到一个导师(指导者),导师会在设计与功能实现上给予即时的反馈。
* 你应该新建一个分支来开始你的工作,分支的名字参考[参与贡献 Pull Request 需知](pull-request.md)。比如,你想完成
feature 功能并提交了 Issue 111,那么你的 branch 名字应为 feature-111。 功能名称可与导师讨论后确定。
-* 完成后,发送一个 Pull Request 到
incubator-dolphinscheduler,提交过程具体请参考下面《[提交代码流程](submit-code.md)》。
+* 完成后,发送一个 Pull Request 到
dolphinscheduler,提交过程具体请参考下面《[提交代码流程](submit-code.md)》。
如果是想提交 Pull Request 完成某一个 Feature 或者修复某个
Bug,这里都建议大家从小处做起,完成一个小功能就提交一次,每次别改动太多文件,改动文件太多也会给 Reviewer 造成很大的心理压力,建议通过多次
Pull Request 的方式完成。
diff --git a/community/zh-cn/development/document.md
b/community/zh-cn/development/document.md
index 096a2b4..b061a3a 100644
--- a/community/zh-cn/development/document.md
+++ b/community/zh-cn/development/document.md
@@ -4,12 +4,12 @@
### 获取文档项目
-DolphinScheduler 项目的文档维护在独立的 [git
仓库](https://github.com/apache/incubator-dolphinscheduler-website)中。
+DolphinScheduler 项目的文档维护在独立的 [git
仓库](https://github.com/apache/dolphinscheduler-website)中。
首先你需要先将文档项目 fork 到自己的 github 仓库中,然后将 fork 的文档克隆到本地计算机中。
```
-git clone
https://github.com/<your-github-user-name>/incubator-dolphinscheduler-website
+git clone https://github.com/<your-github-user-name>/dolphinscheduler-website
```
### 文档环境
diff --git a/community/zh-cn/development/issue.md
b/community/zh-cn/development/issue.md
index 2cc06b8..b26f62f 100644
--- a/community/zh-cn/development/issue.md
+++ b/community/zh-cn/development/issue.md
@@ -112,7 +112,7 @@ Issue 中可以讨论的内容包括但不限于 Feature 的包含的功能,
### Issue 内容模板
-https://github.com/apache/incubator-dolphinscheduler/tree/dev/.github/ISSUE_TEMPLATE
+https://github.com/apache/dolphinscheduler/tree/dev/.github/ISSUE_TEMPLATE
### Bug 类 Issue
diff --git a/community/zh-cn/development/pull-request.md
b/community/zh-cn/development/pull-request.md
index 092f0a6..0c8c546 100644
--- a/community/zh-cn/development/pull-request.md
+++ b/community/zh-cn/development/pull-request.md
@@ -68,9 +68,9 @@ checkstyle [参考](https://checkstyle.sourceforge.io/)是一种帮助开发者
1.checkstyle 和 code-style 配置文件
-checkstyle:
https://github.com/apache/incubator-dolphinscheduler/blob/dev/style/checkstyle.xml
+checkstyle:
https://github.com/apache/dolphinscheduler/blob/dev/style/checkstyle.xml
-code-style:
https://github.com/apache/incubator-dolphinscheduler/blob/dev/style/intellij-java-code-style.xml
+code-style:
https://github.com/apache/dolphinscheduler/blob/dev/style/intellij-java-code-style.xml
2.checkstyle 配置过程
diff --git a/community/zh-cn/development/submit-code.md
b/community/zh-cn/development/submit-code.md
index 13d9a3e..5830f80 100644
--- a/community/zh-cn/development/submit-code.md
+++ b/community/zh-cn/development/submit-code.md
@@ -1,6 +1,6 @@
#### 提交代码流程
-* 首先从远端仓库*https://github.com/apache/incubator-dolphinscheduler.git*
fork一份代码到自己的仓库中
+* 首先从远端仓库*https://github.com/apache/dolphinscheduler.git* fork一份代码到自己的仓库中
* 远端仓库中目前有三个分支:
* master 正常交付分支
@@ -14,11 +14,11 @@
* 把自己仓库clone到本地
- ` git clone https://github.com/apache/incubator-dolphinscheduler.git`
+ ` git clone https://github.com/apache/dolphinscheduler.git`
* 添加远端仓库地址,命名为upstream
- ` git remote add upstream
https://github.com/apache/incubator-dolphinscheduler.git `
+ ` git remote add upstream https://github.com/apache/dolphinscheduler.git `
* 查看仓库:
diff --git a/community/zh-cn/release.md b/community/zh-cn/release.md
index 067fdeb..5fd3aea 100644
--- a/community/zh-cn/release.md
+++ b/community/zh-cn/release.md
@@ -133,17 +133,17 @@
http://keyserver.ubuntu.com:11371/pks/lookup?search=${用户名}&fingerprint=on&
### 更新版本说明
```
-https://github.com/apache/incubator-dolphinscheduler/blob/dev/RELEASE-NOTES.md
+https://github.com/apache/dolphinscheduler/blob/dev/RELEASE-NOTES.md
```
### 创建发布分支
-从github下载的DolphinScheduler源代码到`~/incubator-dolphinscheduler/`目录,假设即将发布的版本为`${RELEASE.VERSION}`
-git clone -b ${RELEASE.VERSION}-release
https://github.com/apache/incubator-dolphinscheduler.git
+从github下载的DolphinScheduler源代码到`~/dolphinscheduler/`目录,假设即将发布的版本为`${RELEASE.VERSION}`
+git clone -b ${RELEASE.VERSION}-release
https://github.com/apache/dolphinscheduler.git
创建`${RELEASE.VERSION}-release`分支,接下来的操作都在该分支进行(如果在github官网上手动执行发版分支创建,下面操作可以忽略)。
```shell
-cd ~/incubator-dolphinscheduler/
+cd ~/dolphinscheduler/
git pull
git checkout -b ${RELEASE.VERSION}-release
git push origin ${RELEASE.VERSION}-release
@@ -245,10 +245,8 @@ cd ~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
将源码包和二进制包添加至SVN工作目录。
```shell
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.zip
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.zip.asc
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
-cp -f ~/incubator-dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz.asc
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
+cp -f ~/dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
+cp -f ~/dolphinscheduler/dolphinscheduler-dist/target/*.tar.gz.asc
~/ds_svn/dev/dolphinscheduler/${RELEASE.VERSION}
```
@@ -280,7 +278,7 @@ shasum -c
apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinscheduler
首先导入发布人公钥。从svn仓库导入KEYS到本地环境。(发布版本的人不需要再导入,帮助做验证的人需要导入,用户名填发版人的即可)
```shell
-curl https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/KEYS >>
KEYS
+curl https://dist.apache.org/repos/dist/dev/dolphinscheduler/KEYS >> KEYS
gpg --import KEYS
gpg --edit-key "${发布人的gpg用户名}"
> trust
@@ -314,8 +312,6 @@ gpg --verify
apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinschedu
解压缩`apache-dolphinscheduler-incubating-${RELEASE.VERSION}-src.zip`,进行如下检查:
- 检查源码包是否包含由于包含不必要文件,致使tarball过于庞大
-- 文件夹包含单词`incubating`
-- 存在`DISCLAIMER`文件
- 存在`LICENSE`和`NOTICE`文件
- 只存在文本文件,不存在二进制文件
- 所有文件的开头都有ASF许可证
@@ -328,8 +324,6 @@ gpg --verify
apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinschedu
解压缩`apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinscheduler-backend-bin.tar.gz`和`apache-dolphinscheduler-incubating-${RELEASE.VERSION}-dolphinscheduler-front-bin.tar.gz`
进行如下检查:
-- 文件夹包含单词`incubating`
-- 存在`DISCLAIMER`文件
- 存在`LICENSE`和`NOTICE`文件
- 所有文本文件开头都有ASF许可证
- 检查第三方依赖许可证:
@@ -371,25 +365,25 @@ Hello DolphinScheduler Community,
This is a call for vote to release Apache DolphinScheduler (Incubating)
version ${RELEASE.VERSION}
Release notes:
-https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/ReleaseNotes.md
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/ReleaseNotes.md
The release candidates:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/${RELEASE.VERSION}/
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/
Maven 2 staging repository:
https://repository.apache.org/content/repositories/${STAGING.REPOSITORY}/org/apache/dolphinscheduler/
Git tag for the release:
-https://github.com/apache/incubator-dolphinscheduler/tree/${RELEASE.VERSION}
+https://github.com/apache/dolphinscheduler/tree/${RELEASE.VERSION}
Release Commit ID:
-https://github.com/apache/incubator-dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
+https://github.com/apache/dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
Keys to verify the Release Candidate:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/KEYS
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/KEYS
Look at here for how to verify this release candidate:
-https://github.com/apache/incubator-dolphinscheduler/blob/1.2.0-release/README.md
+https://github.com/apache/dolphinscheduler/blob/1.2.0-release/README.md
The vote will be open for at least 72 hours or until necessary number of votes
are reached.
@@ -471,25 +465,25 @@
https://lists.apache.org/thread.html/xxxxxxxxxxxxxxxxxxxxxxx
https://lists.apache.org/thread.html/xxxxxxxxxxxxxxxxxxxxxxx
Release notes:
-https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/ReleaseNotes.md
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/ReleaseNotes.md
The release candidates:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/${RELEASE.VERSION}/
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/
Maven 2 staging repository:
https://repository.apache.org/content/repositories/${STAGING.REPOSITORY}/org/apache/dolphinscheduler/
Git tag for the release:
-https://github.com/apache/incubator-dolphinscheduler/tree/${RELEASE.VERSION}
+https://github.com/apache/dolphinscheduler/tree/${RELEASE.VERSION}
Release Commit ID:
-https://github.com/apache/incubator-dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
+https://github.com/apache/dolphinscheduler/commit/xxxxxxxxxxxxxxxxxxxxxxx
Keys to verify the Release Candidate:
-https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/KEYS
+https://dist.apache.org/repos/dist/dev/dolphinscheduler/KEYS
Look at here for how to verify this release candidate:
-https://github.com/apache/incubator-dolphinscheduler/blob/1.2.0-release/README.md
+https://github.com/apache/dolphinscheduler/blob/1.2.0-release/README.md
The vote will be open for at least 72 hours or until necessary number of votes
are reached.
Please vote accordingly:
@@ -585,13 +579,13 @@ dedicated to solving the complex task dependencies in
data processing, making th
Download Links:
https://dolphinscheduler.apache.org/en-us/download/download.html
-Release Notes:
https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/ReleaseNotes.md
+Release Notes:
https://dist.apache.org/repos/dist/dev/dolphinscheduler/${RELEASE.VERSION}/ReleaseNotes.md
Website: https://dolphinscheduler.apache.org/
DolphinScheduler Resources:
-- Issue: https://github.com/apache/incubator-dolphinscheduler/issues/
+- Issue: https://github.com/apache/dolphinscheduler/issues/
- Mailing list: [email protected]
-- Documents:
https://github.com/apache/incubator-dolphinscheduler/blob/${RELEASE.VERSION}/README.md
+- Documents:
https://github.com/apache/dolphinscheduler/blob/${RELEASE.VERSION}/README.md
```
diff --git a/development/en-us/development-environment-setup.md
b/development/en-us/development-environment-setup.md
index 4a1a0be..10aabb8 100644
--- a/development/en-us/development-environment-setup.md
+++ b/development/en-us/development-environment-setup.md
@@ -1,6 +1,6 @@
#### Preparation
-1. First, fork the
[dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler) code
from the remote repository to your local repository.
+1. First, fork the
[dolphinscheduler](https://github.com/apache/dolphinscheduler) code from the
remote repository to your local repository.
2. Install MySQL/PostgreSQL, JDK and MAVEN in your own software development
environment.
diff --git a/docs/en-us/1.3.4/user_doc/build-docker-image.md
b/docs/en-us/1.3.4/user_doc/build-docker-image.md
index 6238aac..7af0d1f 100644
--- a/docs/en-us/1.3.4/user_doc/build-docker-image.md
+++ b/docs/en-us/1.3.4/user_doc/build-docker-image.md
@@ -5,14 +5,14 @@ You can build a docker image in A Unix-like operating system,
You can also build
In Unix-Like, Example:
```bash
-$ cd path/incubator-dolphinscheduler
+$ cd path/dolphinscheduler
$ sh ./docker/build/hooks/build
```
In Windows, Example:
```bat
-c:\incubator-dolphinscheduler>.\docker\build\hooks\build.bat
+c:\dolphinscheduler>.\docker\build\hooks\build.bat
```
Please read `./docker/build/hooks/build` `./docker/build/hooks/build.bat`
script files if you don't understand
diff --git a/docs/en-us/1.3.4/user_doc/docker-deployment.md
b/docs/en-us/1.3.4/user_doc/docker-deployment.md
index 3e13cfb..3d984fe 100644
--- a/docs/en-us/1.3.4/user_doc/docker-deployment.md
+++ b/docs/en-us/1.3.4/user_doc/docker-deployment.md
@@ -13,7 +13,7 @@ mkdir -p /opt/soft/dolphinscheduler;
cd /opt/soft/dolphinscheduler;
# download source code package
-wget
https://mirrors.tuna.tsinghua.edu.cn/apache/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip
+wget
https://mirrors.tuna.tsinghua.edu.cn/apache/dolphinscheduler/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip
# unzip
unzip apache-dolphinscheduler-incubating-1.3.4-src.zip
diff --git a/docs/en-us/1.3.5/user_doc/build-docker-image.md
b/docs/en-us/1.3.5/user_doc/build-docker-image.md
index 6238aac..7af0d1f 100644
--- a/docs/en-us/1.3.5/user_doc/build-docker-image.md
+++ b/docs/en-us/1.3.5/user_doc/build-docker-image.md
@@ -5,14 +5,14 @@ You can build a docker image in A Unix-like operating system,
You can also build
In Unix-Like, Example:
```bash
-$ cd path/incubator-dolphinscheduler
+$ cd path/dolphinscheduler
$ sh ./docker/build/hooks/build
```
In Windows, Example:
```bat
-c:\incubator-dolphinscheduler>.\docker\build\hooks\build.bat
+c:\dolphinscheduler>.\docker\build\hooks\build.bat
```
Please read `./docker/build/hooks/build` `./docker/build/hooks/build.bat`
script files if you don't understand
diff --git a/docs/en-us/1.3.5/user_doc/docker-deployment.md
b/docs/en-us/1.3.5/user_doc/docker-deployment.md
index 4b2ccf0..7dc648b 100644
--- a/docs/en-us/1.3.5/user_doc/docker-deployment.md
+++ b/docs/en-us/1.3.5/user_doc/docker-deployment.md
@@ -488,4 +488,4 @@ docker build -t apache/dolphinscheduler:oracle-driver .
6. Add a Oracle datasource in `Datasource manage`
-For more information please refer to the
[incubator-dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler.git)
documentation.
+For more information please refer to the
[dolphinscheduler](https://github.com/apache/dolphinscheduler.git)
documentation.
diff --git a/docs/en-us/1.3.5/user_doc/kubernetes-deployment.md
b/docs/en-us/1.3.5/user_doc/kubernetes-deployment.md
index ddf1797..2db178f 100644
--- a/docs/en-us/1.3.5/user_doc/kubernetes-deployment.md
+++ b/docs/en-us/1.3.5/user_doc/kubernetes-deployment.md
@@ -74,7 +74,7 @@ $ kubectl delete pvc -l
app.kubernetes.io/instance=dolphinscheduler
## Configuration
-The Configuration file is `values.yaml`, and the [DolphinScheduler Kubernetes
Configuration](https://github.com/apache/incubator-dolphinscheduler/blob/1.3.5-release/docker/kubernetes/dolphinscheduler/README.md)
lists the configurable parameters of the DolphinScheduler chart and their
default values.
+The Configuration file is `values.yaml`, and the [DolphinScheduler Kubernetes
Configuration](https://github.com/apache/dolphinscheduler/blob/1.3.5-release/docker/kubernetes/dolphinscheduler/README.md)
lists the configurable parameters of the DolphinScheduler chart and their
default values.
## FAQ
@@ -140,4 +140,4 @@ docker build -t apache/dolphinscheduler:oracle-driver .
7. Add a Oracle datasource in `Datasource manage`
-For more information please refer to the
[incubator-dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler.git)
documentation.
+For more information please refer to the
[dolphinscheduler](https://github.com/apache/dolphinscheduler.git)
documentation.
diff --git a/docs/en-us/release/download.md b/docs/en-us/release/download.md
deleted file mode 100644
index e53babb..0000000
--- a/docs/en-us/release/download.md
+++ /dev/null
@@ -1,56 +0,0 @@
-# Download the DolphinScheduler releases
-
-Use the links below to download the Apache DolphinScheduler from one of our
mirrors.
-
-**Only source code releases are official Apache releases: Windows and Linux
binary distributions are just for end user convenience.**
-
-
-## DolphinScheduler
-| Date | Version| | Downloads |
-|:---:|:--:|:--:|:--:|
-| Dec. 29th, 2020 | 1.3.4 | Source code|
[[src]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-dolphinscheduler-bin.tar.gz)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-dolphinscheduler-bin.tar.gz.sha512)|
-| Nov. 9th, 2020 | 1.3.3 | Source code|
[[src]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-src.zip)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-src.zip.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-dolphinscheduler-bin.tar.gz)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-dolphinscheduler-bin.tar.gz.sha512)|
-| Sep. 1th, 2020 | 1.3.2 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-dolphinscheduler-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-dolphinscheduler-bin.tar.gz.sha512)|
-| July. 13th, 2020 | 1.3.1 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-dolphinscheduler-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-dolphinscheduler-bin.tar.gz.sha512)|
-| Feb. 24th, 2020 | 1.2.1 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-dolphinscheduler-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-dolphinscheduler-bin.tar.gz.sha512)|
-| Jan. 2th, 2020 | 1.2.0 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-src.zip.sha512)|
-| | | Backend Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-backend-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-backend-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-backend-bin.tar.g
[...]
-| | | Frontend Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz.sha512)|
-
-# Verify the releases
-[PGP signatures
KEYS](https://downloads.apache.org/incubator/dolphinscheduler/KEYS)
-
-It is essential that you verify the integrity of the downloaded files using
the PGP or SHA signatures. The PGP signatures can be verified using GPG or PGP.
Please download the KEYS as well as the asc signature files for relevant
distribution. It is recommended to get these files from the main distribution
directory and not from the mirrors.
-
-```
-gpg -i KEYS
-
-or
-
-pgpk -a KEYS
-
-or
-
-pgp -ka KEYS
-```
-
-To verify the binaries/sources you can download the relevant asc files for it
from main distribution directory and follow the below guide.
-
-```
-gpg --verify apache-dolphinscheduler-incubating********.asc
apache-dolphinscheduler-incubating*********
-
-or
-
-pgpv apache-dolphinscheduler-incubating********.asc
-
-or
-
-pgp apache-dolphinscheduler-incubating********.asc
-```
-
-<br/>
diff --git a/docs/en-us/release/faq.md b/docs/en-us/release/faq.md
index 9eb1c1b..130a559 100644
--- a/docs/en-us/release/faq.md
+++ b/docs/en-us/release/faq.md
@@ -315,7 +315,7 @@ A: 1, Create deployment user and hosts mapping, please
refer 1.3 part of [cluste
---
## Q : When DolphinScheduler release a new version, and the change between
current version and latest, and how to upgrade, and version number specification
-A: 1, The release process of Apache Project happens in the mailing list. You
can subscribe DolphinScheduler's mailing list and then when the release is in
process, you'll receive release emails. Please follow this
[introduction](https://github.com/apache/incubator-dolphinscheduler#get-help)
to subscribe DolphinScheduler's mailing list.
+A: 1, The release process of Apache Project happens in the mailing list. You
can subscribe DolphinScheduler's mailing list and then when the release is in
process, you'll receive release emails. Please follow this
[introduction](https://github.com/apache/dolphinscheduler#get-help) to
subscribe DolphinScheduler's mailing list.
2, When new version published, there would be release note which describe the
change log, and there also have upgrade document for the previous version to
new's.
@@ -386,7 +386,7 @@ A: Session timeout is too short, only 0.3 seconds. Change
the config item in zoo
<p align="center">
<img
src="https://user-images.githubusercontent.com/42579056/80374318-13c98780-88c9-11ea-8d5f-53448b957f02.png"
width="60%" />
</p>
-A: This problem is solved in dev-1.3.0. This
[pr](https://github.com/apache/incubator-dolphinscheduler/pull/2595) has solved
this bug, brief change log:
+A: This problem is solved in dev-1.3.0. This
[pr](https://github.com/apache/dolphinscheduler/pull/2595) has solved this bug,
brief change log:
```
1. add zookeeper environment variable ZOO_4LW_COMMANDS_WHITELIST in
docker-compose.yml file.
@@ -403,7 +403,7 @@ A: This problem is solved in dev-1.3.0. This
[pr](https://github.com/apache/incu
<img
src="https://user-images.githubusercontent.com/51871547/80302626-b1478d00-87dd-11ea-97d4-08aa2244a6d0.jpg"
width="60%" />
</p>
-A: This
[bug](https://github.com/apache/incubator-dolphinscheduler/issues/1477)
describe the problem detail and it has been been solved in version 1.2.1.
+A: This [bug](https://github.com/apache/dolphinscheduler/issues/1477) describe
the problem detail and it has been been solved in version 1.2.1.
For version under 1.2.1, some tips for this situation:
diff --git a/docs/en-us/user_doc/deployment.md
b/docs/en-us/user_doc/deployment.md
deleted file mode 100644
index e416149..0000000
--- a/docs/en-us/user_doc/deployment.md
+++ /dev/null
@@ -1,218 +0,0 @@
-# Deployment Document
-
-There are two deployment modes:
-
-- automatic deployment
-- source code compile and then deployment
-
-## Preparations
-
-Download the latest version of the installation package, download address:
[download](https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/1.2.1/),
-download apache-dolphinscheduler-incubating-x.x.x-dolphinscheduler-bin.tar.gz
-
-
-
-#### Preparations 1: Installation of basic software (self-installation of
required items)
-
- * PostgreSQL (8.2.15+) or MySQL (5.5+) : You can choose either PostgreSQL or
MySQL.
- * JDK (1.8+) : Mandatory
- * ZooKeeper(3.4.6+) :Mandatory
- * Hadoop (2.6+) or MinIo :Optionally, if you need to use the resource upload
function, You can choose either Hadoop or MinIo.
- * Hive (1.2.1) : Optional, hive task submission needs to be installed
- * Spark(1.x,2.x) : Optional, Spark task submission needs to be installed
-
-```
- Note: DolphinScheduler itself does not rely on Hadoop, Hive, Spark,
PostgreSQL, but only calls their Client to run the corresponding tasks.
-```
-
-#### Preparations 2: Create deployment users
-
-- Deployment users are created on all machines that require deployment
scheduling, because the worker service executes jobs in `sudo-u {linux-user}`,
so deployment users need sudo privileges and are confidential.
-
-```
-vi /etc/sudoers
-
-# 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
-```
-
-#### Preparations 3: SSH Secret-Free Configuration
-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.
-
-- Connect the host and other machines SSH
-
-#### Preparations 4: database initialization
-
-* Create databases and accounts
-
- Execute the following command to create database and account
-
- ```
- 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;
- ```
-
-* creates tables and imports basic data
- Modify the following attributes in ./conf/application.properties
-
- ```
- spring.datasource.url
- spring.datasource.username
- spring.datasource.password
- ```
-
- Execute scripts for creating tables and importing basic data
-
- ```
- sh ./script/create-dolphinscheduler.sh
- ```
-
-#### Preparations 5: Modify the deployment directory permissions and operation
parameters
-
- instruction of dolphinscheduler-bin directory
-
-```directory
-bin : Basic service startup script
-DISCLAIMER : DISCLAIMER
-conf : Project Profile
-lib : The project relies on jar packages, including individual module jars and
third-party jars
-LICENSE : LICENSE
-licenses : licenses
-NOTICE : NOTICE
-script : Cluster Start, Stop and Service Monitor Start and Stop scripts
-sql : The project relies on SQL files
-ui : The ui files
-install.sh : One-click deployment script
-```
-
-- Modify permissions (please modify the 'deployUser' to the corresponding
deployment user) so that the deployment user has operational privileges on the
dolphinscheduler-bin directory
-
- `sudo chown -R deployUser:deployUser dolphinscheduler-bin`
-
-- Modify the `.dolphinscheduler_env.sh` environment variable in the
conf/env/directory
-
-- Modify deployment parameters (depending on your server and business
situation):
-
- - Modify the parameters in `install.sh` to replace the values required by
your business
- - MonitorServerState switch variable, added in version 1.0.3, controls
whether to start the self-start script (monitor master, worker status, if
off-line will start automatically). The default value of "false" means that the
self-start script is not started, and if it needs to start, it is changed to
"true".
- - 'hdfsStartupSate' switch variable controls whether to start hdfs
- The default value of "false" means not to start hdfs
- Change the variable to 'true' if you want to use hdfs, you also need to
create the hdfs root path by yourself, that 'hdfsPath' in install.sh.
-
- - If you use hdfs-related functions, you need to copy**hdfs-site.xml** and
**core-site.xml** to the conf directory
-
-
-## Deployment
-Either of the following two methods can be deployed,binary file deployment is
recommended, and experienced partners can use source deployment as well.
-
-### Binary file Deployment
-
-- Switch to deployment user, one-click deployment
-
- `sh install.sh`
-
-- Use the `jps` command to check if the services are started (`jps` comes from
`Java JDK`)
-
-```aidl
- MasterServer ----- Master Service
- WorkerServer ----- Worker Service
- LoggerServer ----- Logger Service
- ApiApplicationServer ----- API Service
- AlertServer ----- Alert Service
-```
-
-If all services are normal, the automatic deployment is successful
-
-
-After successful deployment, the log can be viewed and stored in a specified
folder.
-
-```logPath
- logs/
- ├── dolphinscheduler-alert-server.log
- ├── dolphinscheduler-master-server.log
- |—— dolphinscheduler-worker-server.log
- |—— dolphinscheduler-api-server.log
- |—— dolphinscheduler-logger-server.log
-```
-
-### Compile source code to deploy
-
-After downloading the release version of the source package, unzip it into the
root directory
-
-* Execute the compilation command:
-
-```
- mvn -U clean package -Prelease -Dmaven.test.skip=true
-```
-
-* View directory
-
-After normal compilation,
`apache-dolphinscheduler-incubating-${latest.release.version}-dolphinscheduler-bin.tar.gz`
-is generated in the `./dolphinscheduler-dist/target` directory
-
-- Switch to deployment user, one-click deployment
-
- `sh install.sh`
-
-### Start-and-stop services commonly used in systems (for service purposes,
please refer to System Architecture Design for details)
-
-* stop all services in the cluster
-
- ` sh ./bin/stop-all.sh`
-
-* start all services in the cluster
-
- ` sh ./bin/start-all.sh`
-
-* start and stop one master server
-
-```master
-sh ./bin/dolphinscheduler-daemon.sh start master-server
-sh ./bin/dolphinscheduler-daemon.sh stop master-server
-```
-
-* start and stop one worker server
-
-```worker
-sh ./bin/dolphinscheduler-daemon.sh start worker-server
-sh ./bin/dolphinscheduler-daemon.sh stop worker-server
-```
-
-* start and stop api server
-
-```Api
-sh ./bin/dolphinscheduler-daemon.sh start api-server
-sh ./bin/dolphinscheduler-daemon.sh stop api-server
-```
-* start and stop logger server
-
-```Logger
-sh ./bin/dolphinscheduler-daemon.sh start logger-server
-sh ./bin/dolphinscheduler-daemon.sh stop logger-server
-```
-* start and stop alert server
-
-```Alert
-sh ./bin/dolphinscheduler-daemon.sh start alert-server
-sh ./bin/dolphinscheduler-daemon.sh stop alert-server
-```
-
-## Database Upgrade
-Modify the following properties in ./conf/application.properties
-
- ```
- spring.datasource.url
- spring.datasource.username
- spring.datasource.password
- ```
-The database can be upgraded automatically by executing the following command:
-```upgrade
-sh ./script/upgrade-dolphinscheduler.sh
-```
-
-
diff --git a/docs/en-us/user_doc/upgrade.md b/docs/en-us/user_doc/upgrade.md
deleted file mode 100644
index 6c7a29c..0000000
--- a/docs/en-us/user_doc/upgrade.md
+++ /dev/null
@@ -1,42 +0,0 @@
-
-# DolphinScheduler upgrade documentation
-
-## 1. Back up the previous version of the files and database
-
-## 2. Stop all services of dolphinscheduler
-
- `sh ./script/stop-all.sh`
-
-## 3. Download the new version of the installation package
-
--
[download](https://dist.apache.org/repos/dist/dev/incubator/dolphinscheduler/1.2.1/),
download the latest version of the installation packages
-- The following upgrade operations need to be performed in the new version of
the directory
-
-## 4. Database upgrade
-- Modify the following properties in conf/application.properties
-
-```
- spring.datasource.url
- spring.datasource.username
- spring.datasource.password
-```
-
-- Execute database upgrade script
-
-`sh ./script/upgrade-dolphinscheduler.sh`
-
-## 5. service upgrade
-you can choose either jetty deployment or nginx deployment.
-### jetty deployment
-- Modify the content of the install.sh configuration and execute the upgrade
script
-
- `sh install.sh`
-- Visit the following url, interface address (modify it yourself)
- http://192.168.xx.xx:12345/dolphinscheduler
-
-### nginx deployment
-- Please download the source packages and execute `mvn clean package -Pnginx`
-- Overwrite the previous version of the dist directory
-- Restart the nginx service
-
- `systemctl restart nginx`
diff --git a/docs/zh-cn/1.3.4/user_doc/build-docker-image.md
b/docs/zh-cn/1.3.4/user_doc/build-docker-image.md
index e813aa8..60a80ca 100644
--- a/docs/zh-cn/1.3.4/user_doc/build-docker-image.md
+++ b/docs/zh-cn/1.3.4/user_doc/build-docker-image.md
@@ -5,14 +5,14 @@
类 Unix 系统, 如下:
```bash
-$ cd path/incubator-dolphinscheduler
+$ cd path/dolphinscheduler
$ sh ./docker/build/hooks/build
```
Windows系统, 如下:
```bat
-c:\incubator-dolphinscheduler>.\docker\build\hooks\build.bat
+c:\dolphinscheduler>.\docker\build\hooks\build.bat
```
如果你不理解这些脚本 `./docker/build/hooks/build`
`./docker/build/hooks/build.bat`,请阅读里面的内容。
diff --git a/docs/zh-cn/1.3.4/user_doc/docker-deployment.md
b/docs/zh-cn/1.3.4/user_doc/docker-deployment.md
index 6bb8623..5c4e933 100644
--- a/docs/zh-cn/1.3.4/user_doc/docker-deployment.md
+++ b/docs/zh-cn/1.3.4/user_doc/docker-deployment.md
@@ -14,7 +14,7 @@ mkdir -p /opt/soft/dolphinscheduler;
cd /opt/soft/dolphinscheduler;
# 下载源码包
-wget
https://mirrors.tuna.tsinghua.edu.cn/apache/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip
+wget
https://mirrors.tuna.tsinghua.edu.cn/apache/dolphinscheduler/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip
# 解压缩
unzip apache-dolphinscheduler-incubating-1.3.4-src.zip
diff --git a/docs/zh-cn/1.3.5/user_doc/build-docker-image.md
b/docs/zh-cn/1.3.5/user_doc/build-docker-image.md
index e813aa8..60a80ca 100644
--- a/docs/zh-cn/1.3.5/user_doc/build-docker-image.md
+++ b/docs/zh-cn/1.3.5/user_doc/build-docker-image.md
@@ -5,14 +5,14 @@
类 Unix 系统, 如下:
```bash
-$ cd path/incubator-dolphinscheduler
+$ cd path/dolphinscheduler
$ sh ./docker/build/hooks/build
```
Windows系统, 如下:
```bat
-c:\incubator-dolphinscheduler>.\docker\build\hooks\build.bat
+c:\dolphinscheduler>.\docker\build\hooks\build.bat
```
如果你不理解这些脚本 `./docker/build/hooks/build`
`./docker/build/hooks/build.bat`,请阅读里面的内容。
diff --git a/docs/zh-cn/1.3.5/user_doc/docker-deployment.md
b/docs/zh-cn/1.3.5/user_doc/docker-deployment.md
index 11e559f..203783d 100644
--- a/docs/zh-cn/1.3.5/user_doc/docker-deployment.md
+++ b/docs/zh-cn/1.3.5/user_doc/docker-deployment.md
@@ -14,10 +14,10 @@ mkdir -p /opt/soft/dolphinscheduler;
cd /opt/soft/dolphinscheduler;
# 通过wget下载源码包
-wget
https://mirrors.tuna.tsinghua.edu.cn/apache/incubator/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
+wget
https://mirrors.tuna.tsinghua.edu.cn/apache/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
# 通过curl下载源码包
-curl -O
https://mirrors.tuna.tsinghua.edu.cn/apache/incubator/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
+curl -O
https://mirrors.tuna.tsinghua.edu.cn/apache/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
# 解压缩
unzip apache-dolphinscheduler-incubating-1.3.5-src.zip
@@ -488,4 +488,4 @@ docker build -t apache/dolphinscheduler:oracle-driver .
6. 在数据源中心添加一个 Oracle 数据源
-更多信息请查看
[incubator-dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler.git)
文档.
+更多信息请查看 [dolphinscheduler](https://github.com/apache/dolphinscheduler.git) 文档.
diff --git a/docs/zh-cn/1.3.5/user_doc/kubernetes-deployment.md
b/docs/zh-cn/1.3.5/user_doc/kubernetes-deployment.md
index 9e928fd..92c5ba3 100644
--- a/docs/zh-cn/1.3.5/user_doc/kubernetes-deployment.md
+++ b/docs/zh-cn/1.3.5/user_doc/kubernetes-deployment.md
@@ -12,9 +12,9 @@
```bash
# 通过wget下载源码包
-$ wget
https://mirrors.tuna.tsinghua.edu.cn/apache/incubator/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
+$ wget
https://mirrors.tuna.tsinghua.edu.cn/apache/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
# 通过curl下载源码包
-$ curl -O
https://mirrors.tuna.tsinghua.edu.cn/apache/incubator/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
+$ curl -O
https://mirrors.tuna.tsinghua.edu.cn/apache/dolphinscheduler/1.3.5/apache-dolphinscheduler-incubating-1.3.5-src.zip
$ unzip apache-dolphinscheduler-incubating-1.3.5-src.zip
$ mv apache-dolphinscheduler-incubating-1.3.5-src-release dolphinscheduler-src
$ cd dolphinscheduler-src/docker/kubernetes/dolphinscheduler
@@ -74,7 +74,7 @@ $ kubectl delete pvc -l
app.kubernetes.io/instance=dolphinscheduler
## 配置
-配置文件为 `values.yaml`,[DolphinScheduler Kubernetes
配置](https://github.com/apache/incubator-dolphinscheduler/blob/1.3.5-release/docker/kubernetes/dolphinscheduler/README.md)
列出了 DolphinScheduler 的可配置参数及其默认值
+配置文件为 `values.yaml`,[DolphinScheduler Kubernetes
配置](https://github.com/apache/dolphinscheduler/blob/1.3.5-release/docker/kubernetes/dolphinscheduler/README.md)
列出了 DolphinScheduler 的可配置参数及其默认值
## FAQ
@@ -140,4 +140,4 @@ docker build -t apache/dolphinscheduler:oracle-driver .
7. 在数据源中心添加一个 Oracle 数据源
-更多信息请查看
[incubator-dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler.git)
文档.
+更多信息请查看 [dolphinscheduler](https://github.com/apache/dolphinscheduler.git) 文档.
diff --git a/docs/zh-cn/release/download.md b/docs/zh-cn/release/download.md
deleted file mode 100644
index 6b53638..0000000
--- a/docs/zh-cn/release/download.md
+++ /dev/null
@@ -1,56 +0,0 @@
-# 下载DolphinScheduler发布版本
-
-使用下面的链接,从Apache DolphinScheduler的镜像下载。
-
-**只有源码包属于Apache官方发布包,二进制发布包只是为了方便用户使用。**
-
-## DolphinScheduler
-| 日期 | 版本| | 下载 |
-|:---:|:--:|:--:|:--:|
-| Dec. 29th, 2020 | 1.3.4 | Source code|
[[src]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-dolphinscheduler-bin.tar.gz)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.4/apache-dolphinscheduler-incubating-1.3.4-dolphinscheduler-bin.tar.gz.sha512)|
-| Nov. 9th, 2020 | 1.3.3 | Source code|
[[src]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-src.zip)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-src.zip.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-dolphinscheduler-bin.tar.gz)
[[asc]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://downloads.apache.org/incubator/dolphinscheduler/1.3.3/apache-dolphinscheduler-incubating-1.3.3-dolphinscheduler-bin.tar.gz.sha512)|
-| Sep. 1th, 2020 | 1.3.2 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-dolphinscheduler-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.2/apache-dolphinscheduler-incubating-1.3.2-dolphinscheduler-bin.tar.gz.sha512)|
-| July. 13th, 2020 | 1.3.1 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-dolphinscheduler-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.3.1/apache-dolphinscheduler-incubating-1.3.1-dolphinscheduler-bin.tar.gz.sha512)|
-| Feb. 24th, 2020 | 1.2.1 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-src.zip.sha512)|
-| | | Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-dolphinscheduler-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-dolphinscheduler-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.1/apache-dolphinscheduler-incubating-1.2.1-dolphinscheduler-bin.tar.gz.sha512)|
-| Jan. 2th, 2020 | 1.2.0 | Source code|
[[src]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-src.zip)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-src.zip.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-src.zip.sha512)|
-| | | Backend Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-backend-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-backend-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-backend-bin.tar.g
[...]
-| | | Frontend Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz.sha512)|
-
-
-# 验证版本
-[PGP signatures
KEYS](https://downloads.apache.org/incubator/dolphinscheduler/KEYS)
-
-使用PGP或SHA签名验证下载文件的完整性至关重要。可以使用GPG或PGP验证PGP签名。请下载KEYS以及发布的asc签名文件。建议从主发布目录而不是镜像中获取这些文件。
-
-```
-gpg -i KEYS
-
-or
-
-pgpk -a KEYS
-
-or
-
-pgp -ka KEYS
-```
-
-要验证二进制文件/源,您可以从主发布目录下载相关的asc文件,并按照以下指南进行操作。
-
-```
-gpg --verify apache-dolphinscheduler-incubating********.asc
apache-dolphinscheduler-incubating*********
-
-or
-
-pgpv apache-dolphinscheduler-incubating********.asc
-
-or
-
-pgp apache-dolphinscheduler-incubating********.asc
-```
-
-<br/>
diff --git a/docs/zh-cn/release/faq.md b/docs/zh-cn/release/faq.md
index 5776b90..2109a21 100644
--- a/docs/zh-cn/release/faq.md
+++ b/docs/zh-cn/release/faq.md
@@ -298,7 +298,7 @@ A: 1,参考官网[部署文档](/zh-cn/docs/1.3.4/user_doc/cluster-deploymen
---
## Q:DolphinScheduler 什么时候发布新版本,同时新旧版本区别,以及如何升级,版本号规范
-A:1,Apache 项目的发版流程是通过邮件列表完成的。 你可以订阅 DolphinScheduler
的邮件列表,订阅之后如果有发版,你就可以收到邮件。请参照这篇[指引](https://github.com/apache/incubator-dolphinscheduler#get-help)来订阅
DolphinScheduler 的邮件列表。
+A:1,Apache 项目的发版流程是通过邮件列表完成的。 你可以订阅 DolphinScheduler
的邮件列表,订阅之后如果有发版,你就可以收到邮件。请参照这篇[指引](https://github.com/apache/dolphinscheduler#get-help)来订阅
DolphinScheduler 的邮件列表。
2,当项目发版的时候,会有发版说明告知具体的变更内容,同时也会有从旧版本升级到新版本的升级文档。
@@ -370,7 +370,7 @@ A:会话超时时间太短了,只有 0.3 秒,修改 zookeeper.properties
<p align="center">
<img
src="https://user-images.githubusercontent.com/42579056/80374318-13c98780-88c9-11ea-8d5f-53448b957f02.png"
width="60%" />
</p>
-A:这个问题在 dev-1.3.0 版本解决了。这个
[pr](https://github.com/apache/incubator-dolphinscheduler/pull/2595) 已经解决了这个
bug,主要的改动点:
+A:这个问题在 dev-1.3.0 版本解决了。这个
[pr](https://github.com/apache/dolphinscheduler/pull/2595) 已经解决了这个 bug,主要的改动点:
```
在docker-compose.yml文件中增加zookeeper的环境变量ZOO_4LW_COMMANDS_WHITELIST。
@@ -386,7 +386,7 @@ A:这个问题在 dev-1.3.0 版本解决了。这个 [pr](https://github.com/a
<p align="center">
<img
src="https://user-images.githubusercontent.com/51871547/80302626-b1478d00-87dd-11ea-97d4-08aa2244a6d0.jpg"
width="60%" />
</p>
-A:这个 [bug](https://github.com/apache/incubator-dolphinscheduler/issues/1477)
描述了问题的详情。这个问题在 1.2.1 版本已经被修复了。
+A:这个 [bug](https://github.com/apache/dolphinscheduler/issues/1477)
描述了问题的详情。这个问题在 1.2.1 版本已经被修复了。
对于 1.2.1 以下的版本,这种情况的一些提示:
```
diff --git a/download/en-us/download.md b/download/en-us/download.md
index 899d8ec..34fac9e 100644
--- a/download/en-us/download.md
+++ b/download/en-us/download.md
@@ -25,7 +25,7 @@ Use the links below to download the Apache DolphinScheduler
from one of our mirr
| | | Frontend Binary Distribution|
[[tar]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz)
[[asc]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz.asc)
[[sha512]](https://archive.apache.org/dist/incubator/dolphinscheduler/1.2.0/apache-dolphinscheduler-incubating-1.2.0-dolphinscheduler-front-bin.tar.gz.sha512)|
# Verify the releases
-[PGP signatures
KEYS](https://downloads.apache.org/incubator/dolphinscheduler/KEYS)
+[PGP signatures KEYS](https://downloads.apache.org/dolphinscheduler/KEYS)
It is essential that you verify the integrity of the downloaded files using
the PGP or SHA signatures. The PGP signatures can be verified using GPG or PGP.
Please download the KEYS as well as the asc signature files for relevant
distribution. It is recommended to get these files from the main distribution
directory and not from the mirrors.
diff --git a/download/zh-cn/download.md b/download/zh-cn/download.md
index 48532d5..0fbdec6 100644
--- a/download/zh-cn/download.md
+++ b/download/zh-cn/download.md
@@ -25,7 +25,7 @@
# 验证版本
-[PGP signatures
KEYS](https://downloads.apache.org/incubator/dolphinscheduler/KEYS)
+[PGP signatures KEYS](https://downloads.apache.org/dolphinscheduler/KEYS)
使用PGP或SHA签名验证下载文件的完整性至关重要。可以使用GPG或PGP验证PGP签名。请下载KEYS以及发布的asc签名文件。建议从主发布目录而不是镜像中获取这些文件。
diff --git a/site_config/community.jsx b/site_config/community.jsx
index eb70454..aaa94a7 100644
--- a/site_config/community.jsx
+++ b/site_config/community.jsx
@@ -187,12 +187,12 @@ export default {
{
img: '/img/mailinglist.png',
title: 'Mailing List',
- content: <span>Subscribe <a
href="https://github.com/apache/incubator-dolphinscheduler/issues/1278">mailing
list </a>and discussion your ideas with us.</span>,
+ content: <span>Subscribe <a
href="https://github.com/apache/dolphinscheduler/issues/1278">mailing list
</a>and discussion your ideas with us.</span>,
},
{
img: '/img/issue.png',
title: 'Issue',
- content: <span>Reporting issues via <a
href="https://github.com/apache/incubator-dolphinscheduler/issues">GitHub
issues</a>.</span>,
+ content: <span>Reporting issues via <a
href="https://github.com/apache/dolphinscheduler/issues">GitHub
issues</a>.</span>,
},
{
img: '/img/documents.png',
@@ -202,7 +202,7 @@ export default {
{
img: '/img/pullrequest.png',
title: 'Pull Request',
- content: <span>Send your awesome enhancement via <a
href="https://github.com/apache/incubator-dolphinscheduler/pulls">Pull
requests.</a></span>,
+ content: <span>Send your awesome enhancement via <a
href="https://github.com/apache/dolphinscheduler/pulls">Pull
requests.</a></span>,
},
],
},
@@ -386,12 +386,12 @@ export default {
{
img: '/img/mailinglist.png',
title: '邮件列表',
- content: <span>订阅 <a
href="https://github.com/apache/incubator-dolphinscheduler/issues/1278">邮件列表
</a>参与讨论。</span>,
+ content: <span>订阅 <a
href="https://github.com/apache/dolphinscheduler/issues/1278">邮件列表
</a>参与讨论。</span>,
},
{
img: '/img/issue.png',
title: '报告缺陷',
- content: <span>通过<a
href="https://github.com/apache/incubator-dolphinscheduler/issues"> GitHub
issues </a>报告缺陷。</span>,
+ content: <span>通过<a
href="https://github.com/apache/dolphinscheduler/issues"> GitHub issues
</a>报告缺陷。</span>,
},
{
img: '/img/documents.png',
@@ -401,7 +401,7 @@ export default {
{
img: '/img/pullrequest.png',
title: 'Pull Request',
- content: <span>提交 <a
href="https://github.com/apache/incubator-dolphinscheduler/pulls"> Pull
requests </a>来修复问题。</span>,
+ content: <span>提交 <a
href="https://github.com/apache/dolphinscheduler/pulls"> Pull requests
</a>来修复问题。</span>,
},
],
},
diff --git a/site_config/home.jsx b/site_config/home.jsx
index 565da08..f4981f4 100644
--- a/site_config/home.jsx
+++ b/site_config/home.jsx
@@ -11,13 +11,13 @@ export default {
},
{
text: '查看GitHub',
- link: 'https://github.com/apache/incubator-dolphinscheduler',
+ link: 'https://github.com/apache/dolphinscheduler',
type: 'normal',
},
],
versionNote: {
text: 'V1.1.0 版本说明',
- link:
'https://github.com/apache/incubator-dolphinscheduler/releases/tag/1.1.0',
+ link: 'https://github.com/apache/dolphinscheduler/releases/tag/1.1.0',
},
releaseDate: '2019年08月05日发布',
},
@@ -64,13 +64,13 @@ export default {
},
{
text: 'View on GitHub',
- link: 'https://github.com/apache/incubator-dolphinscheduler',
+ link: 'https://github.com/apache/dolphinscheduler',
type: 'normal',
},
],
versionNote: {
text: 'Release Note of V1.1.0',
- link:
'https://github.com/apache/incubator-dolphinscheduler/releases/tag/1.1.0',
+ link: 'https://github.com/apache/dolphinscheduler/releases/tag/1.1.0',
},
releaseDate: 'Released on Aug 05, 2019',
},
diff --git a/site_config/site.js b/site_config/site.js
index b41e3dd..f7f7493 100644
--- a/site_config/site.js
+++ b/site_config/site.js
@@ -2,7 +2,7 @@
export default {
rootPath: '', // 发布到服务器的根目录,需以/开头但不能有尾/,如果只有/,请填写空字符串
port: 8080, // 本地开发服务器的启动端口
- domain: 'dolphinscheduler.incubator.apache.org', // 站点部署域名,无需协议和path等
+ domain: 'dolphinscheduler.apache.org', // 站点部署域名,无需协议和path等
copyToDist: ['img', 'file', '.asf.yaml', 'sitemap.xml', '.nojekyll',
'.htaccess'], // 当build发布时,需要额外复制到dist目录的资源,默认有:index.html, 404.html, en-us,
zh-cn, build
docsLatest: '1.3.5', // docs的最新版本,当docs有多个版本时支持latest访问,空则不启用此特性
defaultSearch: 'google', // 默认搜索引擎,baidu或者google
@@ -130,10 +130,6 @@ export default {
],
},
],
- disclaimer: {
- title: 'Disclaimer',
- content: 'Apache DolphinScheduler is an effort undergoing incubation at
The Apache Software Foundation (ASF), sponsored by the Apache 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.
While incubation status is not necessarily a reflection of the completeness or
stability of the code, it does [...]
- },
documentation: {
title: 'Documentation',
list: [
@@ -302,10 +298,6 @@ export default {
],
},
],
- disclaimer: {
- title: 'Disclaimer',
- content: 'Apache DolphinScheduler is an effort undergoing incubation at
The Apache Software Foundation (ASF), sponsored by the Apache 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.
While incubation status is not necessarily a reflection of the completeness or
stability of the code, it does [...]
- },
documentation: {
title: '文档',
list: [
diff --git a/src/components/footer/index.jsx b/src/components/footer/index.jsx
index ae89397..6036952 100644
--- a/src/components/footer/index.jsx
+++ b/src/components/footer/index.jsx
@@ -19,8 +19,6 @@ class Footer extends React.Component {
<img src={getLink(logo)} />
<div className="cols-container">
<div className="col col-12">
- <h3>{dataSource.disclaimer.title}</h3>
- <p>{dataSource.disclaimer.content}</p>
</div>
<div className="col col-6">
<dl>
diff --git a/src/pages/home/index.jsx b/src/pages/home/index.jsx
index 68a549f..9d9136b 100644
--- a/src/pages/home/index.jsx
+++ b/src/pages/home/index.jsx
@@ -33,7 +33,7 @@ class Home extends Language {
}
});
// 写死协议,因github会做协议跳转,这种跳转会被Safari拦截
- fetch('https://api.github.com/repos/apache/incubator-dolphinscheduler')
+ fetch('https://api.github.com/repos/apache/dolphinscheduler')
.then(res => res.json())
.then((data) => {
this.setState({
@@ -61,7 +61,6 @@ class Home extends Language {
/>
<div className="vertical-middle">
<div className="product-name">
- <div className="sub-corner">Incubating</div>
<h2>{dataSource.brand.brandName}</h2>
</div>
<p
className="product-desc">{dataSource.brand.briefIntroduction}</p>
@@ -71,13 +70,13 @@ class Home extends Language {
}
</div>
<div className="github-buttons">
- <a href="https://github.com/apache/incubator-dolphinscheduler"
target="_blank" rel="noopener noreferrer">
+ <a href="https://github.com/apache/dolphinscheduler"
target="_blank" rel="noopener noreferrer">
<div className="star">
<img
src="https://img.alicdn.com/tfs/TB1FlB1JwHqK1RjSZFPXXcwapXa-32-32.png" />
<span className="count" style={{ display: starCount ?
'inline-block' : 'none' }}>{getKiloUnit(starCount)}</span>
</div>
</a>
- <a
href="https://github.com/apache/incubator-dolphinscheduler/fork"
target="_blank" rel="noopener noreferrer">
+ <a href="https://github.com/apache/dolphinscheduler/fork"
target="_blank" rel="noopener noreferrer">
<div className="fork">
<img
src="https://img.alicdn.com/tfs/TB1zbxSJwDqK1RjSZSyXXaxEVXa-32-32.png" />
<span className="count" style={{ display: forkCount ?
'inline-block' : 'none' }}>{getKiloUnit(forkCount)}</span>
diff --git a/src/pages/home/index.scss b/src/pages/home/index.scss
index 163b9ca..00c7d90 100644
--- a/src/pages/home/index.scss
+++ b/src/pages/home/index.scss
@@ -66,31 +66,6 @@
word-break: break-word;
margin: 0;
}
- .sub-corner {
- position: absolute;
- top: -30px;
- right: -80px;
- width: 114px;
- height: 35px;
- font-size: 18px;
- font-weight: lighter;
- text-align: center;
- line-height: 33px;
- color: #cdcdcd;
- background-color: rgba(255, 255, 255, 0.2);
- border-radius: 4px;
- }
- .sub-corner::before {
- content: '';
- position: absolute;
- width: 0;
- height: 0;
- left: 16px;
- bottom: -9px;
- border-left: solid 7px transparent;
- border-top: solid 9px rgba(255, 255, 255, 0.2);
- border-right: solid 7px transparent;
- }
}
.product-desc {
opacity: 0.6;