Skip to content

Commit 20e9869

Browse files
authored
Updated documentation and code to version 3.1.4 (#13589)
1 parent 36284f9 commit 20e9869

19 files changed

+335
-263
lines changed

deploy/docker/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717
#
1818
HUB=apache
19-
TAG=3.1.3
19+
TAG=3.1.4
2020

2121
TZ=Asia/Shanghai
2222
DATABASE=postgresql

deploy/kubernetes/dolphinscheduler/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ type: application
3535

3636
# This is the chart version. This version number should be incremented each time you make changes
3737
# to the chart and its templates, including the app version.
38-
version: 3.1.3
38+
version: 3.1.4
3939

4040
# This is the version number of the application being deployed. This version number should be
4141
# incremented each time you make changes to the application.
42-
appVersion: 3.1.3
42+
appVersion: 3.1.4
4343

4444
dependencies:
4545
- name: postgresql

deploy/kubernetes/dolphinscheduler/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ timezone: "Asia/Shanghai"
2323

2424
image:
2525
registry: "dolphinscheduler.docker.scarf.sh/apache"
26-
tag: "3.1.3"
26+
tag: "3.1.4"
2727
pullPolicy: "IfNotPresent"
2828
pullSecret: ""
2929
master: dolphinscheduler-master

docs/configs/docsdev.js

+242-242
Large diffs are not rendered by default.

docs/configs/site.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default {
4545
children: [
4646
{
4747
key: 'docs0',
48-
text: 'latest(3.1.3)',
48+
text: 'latest(3.1.4)',
4949
link: '/en-us/docs/latest/user_doc/about/introduction.html',
5050
},
5151
{

docs/docs/en/guide/expansion-reduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Attention: DolphinScheduler itself does not depend on Hadoop, Hive, Spark, but w
3030
mkdir -p /opt
3131
cd /opt
3232
# decompress
33-
tar -zxvf apache-dolphinscheduler-3.1.3-bin.tar.gz -C /opt
33+
tar -zxvf apache-dolphinscheduler-3.1.4-bin.tar.gz -C /opt
3434
cd /opt
35-
mv apache-dolphinscheduler-3.1.3-bin dolphinscheduler
35+
mv apache-dolphinscheduler-3.1.4-bin dolphinscheduler
3636
```
3737

3838
```markdown

docs/docs/en/guide/start/docker.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Start DolphinScheduler with standalone-server Docker images is the easiest way t
1919
you can learn DolphinScheduler's concepts and usage, with minimal cost.
2020

2121
```shell
22-
$ DOLPHINSCHEDULER_VERSION=3.1.3
22+
$ DOLPHINSCHEDULER_VERSION=3.1.4
2323
$ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:25333 -d apache/dolphinscheduler-standalone-server:"${DOLPHINSCHEDULER_VERSION}"
2424
```
2525

@@ -49,7 +49,7 @@ After complete the configuration, we can get the `docker-compose.yaml` file from
4949
form its source package, and make sure you get the right version. After download the package, you can run the commands as below.
5050

5151
```shell
52-
$ DOLPHINSCHEDULER_VERSION=3.1.3
52+
$ DOLPHINSCHEDULER_VERSION=3.1.4
5353
$ tar -zxf apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src.tar.gz
5454
# Going to docker-compose's location
5555
# For Mac or Linux users
@@ -72,7 +72,7 @@ $ docker-compose --profile all up -d
7272
container when it up. You could start DolphinScheduler server separately if you want to reuse your exists services.
7373

7474
```shell
75-
$ DOLPHINSCHEDULER_VERSION=3.1.3
75+
$ DOLPHINSCHEDULER_VERSION=3.1.4
7676
# Initialize the database, make sure database <DATABASE> already exists
7777
$ docker run -d --name dolphinscheduler-tools \
7878
-e DATABASE="postgresql" \
@@ -133,5 +133,5 @@ and use `admin` and `dolphinscheduler123` as default username and password in th
133133

134134
You can modify some environment variables to change configurations when you are starting servers through Docker. We have
135135
an example in [using exists PostgreSQL ZooKeeper](#using-exists-postgresql-zookeeper) to change database and ZooKeeper configurations,
136-
and you could find all environment variables in [all environment variables](https://github.com/apache/dolphinscheduler/blob/3.1.3/script/env/dolphinscheduler_env.sh) <!-- markdown-link-check-disable-line -->
136+
and you could find all environment variables in [all environment variables](https://github.com/apache/dolphinscheduler/blob/3.1.4/script/env/dolphinscheduler_env.sh) <!-- markdown-link-check-disable-line -->
137137
and change them if you want.

docs/docs/en/history-versions.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
#### Setup instructions, are available for each stable version of Apache DolphinScheduler below:
66

7+
### Versions: 3.1.4
8+
9+
#### Links: [3.1.4 Document](../3.1.4/user_doc/about/introduction.md)
10+
711
### Versions: 3.1.3
812

913
#### Links: [3.1.3 Document](../3.1.3/user_doc/about/introduction.md)

docs/docs/zh/guide/expansion-reduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
mkdir -p /opt
3131
cd /opt
3232
# 解压缩
33-
tar -zxvf apache-dolphinscheduler-3.1.3-bin.tar.gz -C /opt
33+
tar -zxvf apache-dolphinscheduler-3.1.4-bin.tar.gz -C /opt
3434
cd /opt
35-
mv apache-dolphinscheduler-3.1.3-bin dolphinscheduler
35+
mv apache-dolphinscheduler-3.1.4-bin dolphinscheduler
3636
```
3737

3838
```markdown

docs/docs/zh/guide/start/docker.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
你可以最快速的体验到 DolphinScheduler 的大部分功能,了解主要和概念和内容。
1818

1919
```shell
20-
$ DOLPHINSCHEDULER_VERSION=3.1.3
20+
$ DOLPHINSCHEDULER_VERSION=3.1.4
2121
$ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:25333 -d apache/dolphinscheduler-standalone-server:"${DOLPHINSCHEDULER_VERSION}"
2222
```
2323

@@ -43,7 +43,7 @@ $ docker run --name dolphinscheduler-standalone-server -p 12345:12345 -p 25333:2
4343
源码包对应的值为 "Total Source Code"。当下载完源码后就可以运行命令进行部署了。
4444

4545
```shell
46-
$ DOLPHINSCHEDULER_VERSION=3.1.3
46+
$ DOLPHINSCHEDULER_VERSION=3.1.4
4747
$ tar -zxf apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src.tar.gz
4848
# Mac Linux 用户
4949
$ cd apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src/deploy/docker
@@ -65,7 +65,7 @@ $ docker-compose --profile all up -d
6565
ZooKeeper 且不想启动新的服务,可以使用这个方式分别启动 DolphinScheduler 容器。
6666

6767
```shell
68-
$ DOLPHINSCHEDULER_VERSION=3.1.3
68+
$ DOLPHINSCHEDULER_VERSION=3.1.4
6969
# 初始化数据库,其确保数据库 <DATABASE> 已经存在
7070
$ docker run -d --name dolphinscheduler-tools \
7171
-e DATABASE="postgresql" \
@@ -126,4 +126,4 @@ $ docker run -d --name dolphinscheduler-alert-server \
126126
## 环境变量
127127

128128
可以通过环境变量来修改 Docker 运行的配置,我们在沿用已有的 PostgreSQL 和 ZooKeeper 服务中就通过环境变量修改了 Docker 的数据库配置和
129-
注册中心配置,关于全部的配置环境可以查看[全部的配置文件](https://github.com/apache/dolphinscheduler/blob/3.1.3/script/env/dolphinscheduler_env.sh) 了解 <!-- markdown-link-check-disable-line -->
129+
注册中心配置,关于全部的配置环境可以查看[全部的配置文件](https://github.com/apache/dolphinscheduler/blob/3.1.4/script/env/dolphinscheduler_env.sh) 了解 <!-- markdown-link-check-disable-line -->

docs/docs/zh/history-versions.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
#### 以下是Apache DolphinScheduler每个稳定版本的设置说明。
66

7+
### Versions: 3.1.4
8+
9+
#### Links: [3.1.4 文档](../3.1.4/user_doc/about/introduction.md)
10+
711
### Versions: 3.1.3
812

913
#### Links: [3.1.3 文档](../3.1.3/user_doc/about/introduction.md)

dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_h2.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ CREATE TABLE t_ds_version
989989
-- Records of t_ds_version
990990
-- ----------------------------
991991
INSERT INTO t_ds_version
992-
VALUES ('1', '3.1.3');
992+
VALUES ('1', '3.1.4');
993993

994994

995995
-- ----------------------------

dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ CREATE TABLE `t_ds_version` (
980980
-- ----------------------------
981981
-- Records of t_ds_version
982982
-- ----------------------------
983-
INSERT IGNORE INTO `t_ds_version` VALUES ('1', '3.1.3');
983+
INSERT IGNORE INTO `t_ds_version` VALUES ('1', '3.1.4');
984984

985985

986986
-- ----------------------------

dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ INSERT INTO t_ds_queue(queue_name, queue, create_time, update_time)
971971
VALUES ('default', 'default', '2018-11-29 10:22:33', '2018-11-29 10:22:33');
972972

973973
-- Records of t_ds_queue,default queue name : default
974-
INSERT INTO t_ds_version(version) VALUES ('3.1.3');
974+
INSERT INTO t_ds_version(version) VALUES ('3.1.4');
975975

976976
--
977977
-- Table structure for table t_ds_plugin_define
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.1.4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/

0 commit comments

Comments
 (0)