Skip to content

Commit

Permalink
[Improve] Update snapshot version to 2.3.8 (#7435)
Browse files Browse the repository at this point in the history
* [Improve] Update snapshot version to 2.3.8

* [Improve] Update snapshot version to 2.3.8
  • Loading branch information
wuchunfu authored Aug 21, 2024
1 parent adf888e commit 570bbb3
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 40 deletions.
4 changes: 2 additions & 2 deletions bin/install-plugin.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ REM Get seatunnel home
set "SEATUNNEL_HOME=%~dp0..\"
echo Set SEATUNNEL_HOME to [%SEATUNNEL_HOME%]

REM Connector default version is 2.3.7, you can also choose a custom version. eg: 2.1.2: install-plugin.bat 2.1.2
set "version=2.3.7"
REM Connector default version is 2.3.8, you can also choose a custom version. eg: 2.3.8: install-plugin.bat 2.3.8
set "version=2.3.8"
if not "%~1"=="" set "version=%~1"

REM Create the lib directory
Expand Down
4 changes: 2 additions & 2 deletions bin/install-plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
# get seatunnel home
SEATUNNEL_HOME=$(cd $(dirname $0);cd ../;pwd)

# connector default version is 2.3.7, you can also choose a custom version. eg: 2.1.2: sh install-plugin.sh 2.1.2
version=2.3.7
# connector default version is 2.3.8, you can also choose a custom version. eg: 2.3.8: sh install-plugin.sh 2.3.8
version=2.3.8

if [ -n "$1" ]; then
version="$1"
Expand Down
2 changes: 1 addition & 1 deletion docs/en/connector-v2/sink/Paimon.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ libfb303-xxx.jar
| data_save_mode | Enum | No | APPEND_DATA | The data save mode |
| paimon.table.primary-keys | String | No | - | Default comma-separated list of columns (primary key) that identify a row in tables.(Notice: The partition field needs to be included in the primary key fields) |
| paimon.table.partition-keys | String | No | - | Default comma-separated list of partition fields to use when creating tables. |
| paimon.table.write-props | Map | No | - | Properties passed through to paimon table initialization, [reference](https://paimon.apache.org/docs/0.6/maintenance/configurations/#coreoptions). |
| paimon.table.write-props | Map | No | - | Properties passed through to paimon table initialization, [reference](https://paimon.apache.org/docs/0.8/maintenance/configurations/#coreoptions). |
| paimon.hadoop.conf | Map | No | - | Properties in hadoop conf |
| paimon.hadoop.conf-path | String | No | - | The specified loading path for the 'core-site.xml', 'hdfs-site.xml', 'hive-site.xml' files |

Expand Down
6 changes: 3 additions & 3 deletions docs/en/seatunnel-engine/download-seatunnel.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Go to the [Seatunnel Download Page](https://seatunnel.apache.org/download) to do
Or you can also download it through the terminal.

```shell
export version="2.3.7"
export version="2.3.8"
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
```
Expand All @@ -34,10 +34,10 @@ Starting from the 2.2.0-beta version, the binary package no longer provides the
sh bin/install-plugin.sh
```

If you need a specific connector version, taking 2.3.7 as an example, you need to execute the following command.
If you need a specific connector version, taking 2.3.8 as an example, you need to execute the following command.

```bash
sh bin/install-plugin.sh 2.3.7
sh bin/install-plugin.sh 2.3.8
```

Usually you don't need all the connector plugins, so you can specify the plugins you need through configuring `config/plugin_config`, for example, if you only need the `connector-console` plugin, then you can modify the plugin.properties configuration file as follows.
Expand Down
36 changes: 18 additions & 18 deletions docs/en/start-v2/kubernetes/kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To run the image with SeaTunnel, first create a `Dockerfile`:
```Dockerfile
FROM flink:1.13

ENV SEATUNNEL_VERSION="2.3.7"
ENV SEATUNNEL_VERSION="2.3.8"
ENV SEATUNNEL_HOME="/opt/seatunnel"

RUN wget https://dlcdn.apache.org/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
Expand All @@ -56,13 +56,13 @@ RUN cd ${SEATUNNEL_HOME} && sh bin/install-plugin.sh ${SEATUNNEL_VERSION}

Then run the following commands to build the image:
```bash
docker build -t seatunnel:2.3.7-flink-1.13 -f Dockerfile .
docker build -t seatunnel:2.3.8-flink-1.13 -f Dockerfile .
```
Image `seatunnel:2.3.7-flink-1.13` needs to be present in the host (minikube) so that the deployment can take place.
Image `seatunnel:2.3.8-flink-1.13` needs to be present in the host (minikube) so that the deployment can take place.

Load image to minikube via:
```bash
minikube image load seatunnel:2.3.7-flink-1.13
minikube image load seatunnel:2.3.8-flink-1.13
```

</TabItem>
Expand All @@ -72,7 +72,7 @@ minikube image load seatunnel:2.3.7-flink-1.13
```Dockerfile
FROM openjdk:8

ENV SEATUNNEL_VERSION="2.3.7"
ENV SEATUNNEL_VERSION="2.3.8"
ENV SEATUNNEL_HOME="/opt/seatunnel"

RUN wget https://dlcdn.apache.org/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
Expand All @@ -84,13 +84,13 @@ RUN cd ${SEATUNNEL_HOME} && sh bin/install-plugin.sh ${SEATUNNEL_VERSION}

Then run the following commands to build the image:
```bash
docker build -t seatunnel:2.3.7 -f Dockerfile .
docker build -t seatunnel:2.3.8 -f Dockerfile .
```
Image `seatunnel:2.3.7` need to be present in the host (minikube) so that the deployment can take place.
Image `seatunnel:2.3.8` need to be present in the host (minikube) so that the deployment can take place.

Load image to minikube via:
```bash
minikube image load seatunnel:2.3.7
minikube image load seatunnel:2.3.8
```

</TabItem>
Expand All @@ -100,7 +100,7 @@ minikube image load seatunnel:2.3.7
```Dockerfile
FROM openjdk:8

ENV SEATUNNEL_VERSION="2.3.7"
ENV SEATUNNEL_VERSION="2.3.8"
ENV SEATUNNEL_HOME="/opt/seatunnel"

RUN wget https://dlcdn.apache.org/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
Expand All @@ -112,13 +112,13 @@ RUN cd ${SEATUNNEL_HOME} && sh bin/install-plugin.sh ${SEATUNNEL_VERSION}

Then run the following commands to build the image:
```bash
docker build -t seatunnel:2.3.7 -f Dockerfile .
docker build -t seatunnel:2.3.8 -f Dockerfile .
```
Image `seatunnel:2.3.7` needs to be present in the host (minikube) so that the deployment can take place.
Image `seatunnel:2.3.8` needs to be present in the host (minikube) so that the deployment can take place.

Load image to minikube via:
```bash
minikube image load seatunnel:2.3.7
minikube image load seatunnel:2.3.8
```

</TabItem>
Expand Down Expand Up @@ -191,7 +191,7 @@ none
]}>
<TabItem value="flink">

In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.7-release/config/v2.streaming.conf.template):
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.8-release/config/v2.streaming.conf.template):

```conf
env {
Expand Down Expand Up @@ -245,7 +245,7 @@ kind: FlinkDeployment
metadata:
name: seatunnel-flink-streaming-example
spec:
image: seatunnel:2.3.7-flink-1.13
image: seatunnel:2.3.8-flink-1.13
flinkVersion: v1_13
flinkConfiguration:
taskmanager.numberOfTaskSlots: "2"
Expand Down Expand Up @@ -291,7 +291,7 @@ kubectl apply -f seatunnel-flink.yaml

<TabItem value="Zeta (local-mode)">

In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.7-release/config/v2.streaming.conf.template):
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.8-release/config/v2.streaming.conf.template):

```conf
env {
Expand Down Expand Up @@ -334,7 +334,7 @@ metadata:
spec:
containers:
- name: seatunnel
image: seatunnel:2.3.7
image: seatunnel:2.3.8
command: ["/bin/sh","-c","/opt/seatunnel/bin/seatunnel.sh --config /data/seatunnel.streaming.conf -e local"]
resources:
limits:
Expand Down Expand Up @@ -366,7 +366,7 @@ kubectl apply -f seatunnel.yaml

<TabItem value="Zeta (cluster-mode)">

In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.7-release/config/v2.streaming.conf.template):
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.8-release/config/v2.streaming.conf.template):

```conf
env {
Expand Down Expand Up @@ -524,7 +524,7 @@ spec:
spec:
containers:
- name: seatunnel
image: seatunnel:2.3.7
image: seatunnel:2.3.8
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5801
Expand Down
6 changes: 3 additions & 3 deletions docs/en/start-v2/locally/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Visit the [SeaTunnel Download Page](https://seatunnel.apache.org/download) to do
Or you can also download it through the terminal:

```shell
export version="2.3.7"
export version="2.3.8"
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
```
Expand All @@ -34,10 +34,10 @@ Starting from the 2.2.0-beta version, the binary package no longer provides the
sh bin/install-plugin.sh
```

If you need a specific connector version, taking 2.3.7 as an example, you need to execute the following command:
If you need a specific connector version, taking 2.3.8 as an example, you need to execute the following command:

```bash
sh bin/install-plugin.sh 2.3.7
sh bin/install-plugin.sh 2.3.8
```

Usually you don't need all connector plugins, so you can specify the plugins you need through configuring `config/plugin_config`. For example, if you only need the `connector-console` plugin, you can modify the plugin.properties configuration file as follows:
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/connector-v2/sink/Paimon.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ libfb303-xxx.jar
| data_save_mode | 枚举 || APPEND_DATA | 数据保存模式 |
| paimon.table.primary-keys | 字符串 || - | 主键字段列表,联合主键使用逗号分隔(注意:分区字段需要包含在主键字段中) |
| paimon.table.partition-keys | 字符串 || - | 分区字段列表,多字段使用逗号分隔 |
| paimon.table.write-props | Map || - | Paimon表初始化指定的属性, [参考](https://paimon.apache.org/docs/0.6/maintenance/configurations/#coreoptions) |
| paimon.table.write-props | Map || - | Paimon表初始化指定的属性, [参考](https://paimon.apache.org/docs/0.8/maintenance/configurations/#coreoptions) |
| paimon.hadoop.conf | Map || - | Hadoop配置文件属性信息 |
| paimon.hadoop.conf-path | 字符串 || - | Hadoop配置文件目录,用于加载'core-site.xml', 'hdfs-site.xml', 'hive-site.xml'文件配置 |

Expand Down
6 changes: 3 additions & 3 deletions docs/zh/seatunnel-engine/download-seatunnel.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import TabItem from '@theme/TabItem';
或者您也可以通过终端下载

```shell
export version="2.3.7"
export version="2.3.8"
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
```
Expand All @@ -31,13 +31,13 @@ tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
从2.2.0-beta版本开始,二进制包不再默认提供连接器依赖,因此在第一次使用它时,您需要执行以下命令来安装连接器:(当然,您也可以从 [Apache Maven Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/) 手动下载连接器,然后将其移动至`connectors/seatunnel`目录下)。

```bash
sh bin/install-plugin.sh 2.3.7
sh bin/install-plugin.sh 2.3.8
```

如果您需要指定的连接器版本,以2.3.7为例,您需要执行如下命令

```bash
sh bin/install-plugin.sh 2.3.7
sh bin/install-plugin.sh 2.3.8
```

通常您并不需要所有的连接器插件,所以您可以通过配置`config/plugin_config`来指定您所需要的插件,例如,您只需要`connector-console`插件,那么您可以修改plugin.properties配置文件如下
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/start-v2/locally/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import TabItem from '@theme/TabItem';
或者您也可以通过终端下载:

```shell
export version="2.3.7"
export version="2.3.8"
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
```
Expand All @@ -37,7 +37,7 @@ sh bin/install-plugin.sh
如果您需要指定的连接器版本,以2.3.7为例,您需要执行如下命令:

```bash
sh bin/install-plugin.sh 2.3.7
sh bin/install-plugin.sh 2.3.8
```

通常您并不需要所有的连接器插件,可以通过配置`config/plugin_config`来指定您所需要的插件,例如,您只需要`connector-console`插件,那么您可以修改plugin.properties配置文件如下:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<properties>
<!--todo The classification is too confusing, reclassify by type-->
<revision>2.3.7-SNAPSHOT</revision>
<revision>2.3.8-SNAPSHOT</revision>
<seatunnel.config.shade.version>2.1.1</seatunnel.config.shade.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
Expand Down
8 changes: 4 additions & 4 deletions tools/dependencies/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ protostuff-collectionschema-1.8.0.jar
protostuff-core-1.8.0.jar
protostuff-runtime-1.8.0.jar
scala-library-2.12.15.jar
seatunnel-jackson-2.3.7-SNAPSHOT-optional.jar
seatunnel-guava-2.3.7-SNAPSHOT-optional.jar
seatunnel-hazelcast-shade-2.3.7-SNAPSHOT-optional.jar
seatunnel-jackson-2.3.8-SNAPSHOT-optional.jar
seatunnel-guava-2.3.8-SNAPSHOT-optional.jar
seatunnel-hazelcast-shade-2.3.8-SNAPSHOT-optional.jar
slf4j-api-1.7.25.jar
jsqlparser-4.5.jar
animal-sniffer-annotations-1.17.jar
Expand All @@ -46,4 +46,4 @@ accessors-smart-2.4.7.jar
asm-9.1.jar
avro-1.11.1.jar
groovy-4.0.16.jar
seatunnel-janino-2.3.7-SNAPSHOT-optional.jar
seatunnel-janino-2.3.8-SNAPSHOT-optional.jar

0 comments on commit 570bbb3

Please sign in to comment.