Skip to content

Commit 62b4f16

Browse files
authored
[Fix] Fix dead link on seatunnel connectors list url (#7453)
1 parent 6abb83d commit 62b4f16

File tree

31 files changed

+64
-64
lines changed

31 files changed

+64
-64
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Configure jobs, select execution engines, and parallelize data using Source Conn
6767

6868
## Supported Connectors
6969

70-
- [Source Connectors](https://seatunnel.apache.org/docs/category/source-v2)
71-
- [Sink Connectors](https://seatunnel.apache.org/docs/category/sink-v2)
70+
- [Source Connectors](https://seatunnel.apache.org/docs/connector-v2/source)
71+
- [Sink Connectors](https://seatunnel.apache.org/docs/connector-v2/sink)
7272
- [Transform Connectors](docs/en/transform-v2)
7373

7474
## Getting Started

config/v2.batch.config.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ source {
4040
}
4141

4242
# If you would like to get more information about how to configure SeaTunnel and see full list of source plugins,
43-
# please go to https://seatunnel.apache.org/docs/category/source-v2
43+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
4444
}
4545

4646
sink {
4747
Console {
4848
}
4949

5050
# If you would like to get more information about how to configure SeaTunnel and see full list of sink plugins,
51-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
51+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
5252
}

config/v2.streaming.conf.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ source {
4040
}
4141

4242
# If you would like to get more information about how to configure SeaTunnel and see full list of source plugins,
43-
# please go to https://seatunnel.apache.org/docs/category/source-v2
43+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
4444
}
4545

4646
sink {
4747
Console {
4848
}
4949

5050
# If you would like to get more information about how to configure SeaTunnel and see full list of sink plugins,
51-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
51+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
5252
}

docs/en/connector-v2/sink/DB2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ source {
111111
}
112112
}
113113
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
114-
# please go to https://seatunnel.apache.org/docs/category/source-v2
114+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
115115
}
116116
117117
transform {
@@ -128,7 +128,7 @@ sink {
128128
query = "insert into test_table(name,age) values(?,?)"
129129
}
130130
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
131-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
131+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
132132
}
133133
```
134134

docs/en/connector-v2/sink/HdfsFile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ source {
115115
}
116116
}
117117
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
118-
# please go to https://seatunnel.apache.org/docs/category/source-v2
118+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
119119
}
120120
121121
transform {
@@ -130,7 +130,7 @@ sink {
130130
file_format_type = "orc"
131131
}
132132
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
133-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
133+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
134134
}
135135
```
136136

docs/en/connector-v2/sink/Kingbase.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ source {
125125
}
126126
}
127127
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
128-
# please go to https://seatunnel.apache.org/docs/category/source-v2
128+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
129129
}
130130
131131
transform {
@@ -142,7 +142,7 @@ sink {
142142
query = "insert into test_table(c_string,c_boolean,c_tinyint,c_smallint,c_int,c_bigint,c_float,c_double,c_decimal,c_date,c_time,c_timestamp) values(?,?,?,?,?,?,?,?,?,?,?,?)"
143143
}
144144
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
145-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
145+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
146146
}
147147
```
148148

docs/en/connector-v2/sink/Mysql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ source {
122122
}
123123
}
124124
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
125-
# please go to https://seatunnel.apache.org/docs/category/source-v2
125+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
126126
}
127127
128128
transform {
@@ -139,7 +139,7 @@ sink {
139139
query = "insert into test_table(name,age) values(?,?)"
140140
}
141141
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
142-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
142+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
143143
}
144144
```
145145

docs/en/connector-v2/sink/OceanBase.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ source {
121121
}
122122
}
123123
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
124-
# please go to https://seatunnel.apache.org/docs/category/source-v2
124+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
125125
}
126126
127127
transform {
@@ -139,7 +139,7 @@ sink {
139139
query = "insert into test_table(name,age) values(?,?)"
140140
}
141141
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
142-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
142+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
143143
}
144144
```
145145

docs/en/connector-v2/sink/Oracle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ source {
120120
}
121121
}
122122
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
123-
# please go to https://seatunnel.apache.org/docs/category/source-v2
123+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
124124
}
125125
126126
transform {
@@ -137,7 +137,7 @@ sink {
137137
query = "INSERT INTO TEST.TEST_TABLE(NAME,AGE) VALUES(?,?)"
138138
}
139139
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
140-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
140+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
141141
}
142142
```
143143

docs/en/connector-v2/sink/PostgreSql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ source {
163163
}
164164
}
165165
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
166-
# please go to https://seatunnel.apache.org/docs/category/source-v2
166+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
167167
}
168168
169169
transform {
@@ -181,7 +181,7 @@ sink {
181181
query = "insert into test_table(name,age) values(?,?)"
182182
}
183183
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
184-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
184+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
185185
}
186186
```
187187

docs/en/connector-v2/sink/S3File.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ source {
337337
}
338338
}
339339
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
340-
# please go to https://seatunnel.apache.org/docs/category/source-v2
340+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
341341
}
342342
343343
transform {
@@ -370,7 +370,7 @@ sink {
370370
}
371371
}
372372
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
373-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
373+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
374374
}
375375
```
376376

docs/en/connector-v2/sink/Snowflake.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ source {
9999
}
100100
}
101101
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
102-
# please go to https://seatunnel.apache.org/docs/category/source-v2
102+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
103103
}
104104
transform {
105105
# If you would like to get more information about how to configure seatunnel and see full list of transform plugins,
@@ -114,7 +114,7 @@ sink {
114114
query = "insert into test_table(name,age) values(?,?)"
115115
}
116116
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
117-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
117+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
118118
}
119119
```
120120

docs/en/connector-v2/sink/Vertica.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ source {
119119
}
120120
}
121121
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
122-
# please go to https://seatunnel.apache.org/docs/category/source-v2
122+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
123123
}
124124
125125
transform {
@@ -136,7 +136,7 @@ sink {
136136
query = "insert into test_table(name,age) values(?,?)"
137137
}
138138
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
139-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
139+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
140140
}
141141
```
142142

docs/en/connector-v2/source/HdfsFile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ source {
115115
fs.defaultFS = "hdfs://namenode001"
116116
}
117117
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
118-
# please go to https://seatunnel.apache.org/docs/category/source-v2
118+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
119119
}
120120
121121
transform {
@@ -130,7 +130,7 @@ sink {
130130
file_format = "orc"
131131
}
132132
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
133-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
133+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
134134
}
135135
```
136136

docs/en/start-v2/locally/quick-start-seatunnel-engine.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The SeaTunnel console will print some logs as below:
9696

9797
## Extended Example: Batch Mode from MySQL to Doris
9898

99-
## Step 1: Download the Connector
99+
### Step 1: Download the Connector
100100

101101
First, you need to add the connector name to the `${SEATUNNEL_HOME}/config/plugin_config` file. Then, execute the command to install the connector (of course, you can also manually download the connector from the [Apache Maven Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/) and move it to the `connectors/` directory). Finally, make sure that the `connector-jdbc` and `connector-doris` connectors are in the `${SEATUNNEL_HOME}/connectors/` directory.
102102

@@ -113,11 +113,11 @@ connector-doris
113113
sh bin/install-plugin.sh
114114
```
115115

116-
## Step 2: Place the MySQL Driver
116+
### Step 2: Place the MySQL Driver
117117

118118
You need to download the [JDBC driver JAR package](https://mvnrepository.com/artifact/mysql/mysql-connector-java) and place it in the `${SEATUNNEL_HOME}/lib/` directory.
119119

120-
## Step 3: Add Job Configuration File to Define the Job
120+
### Step 3: Add Job Configuration File to Define the Job
121121

122122
```bash
123123
cd seatunnel/job/
@@ -159,7 +159,7 @@ sink {
159159

160160
For more information about the configuration, please refer to [Basic Concepts of Configuration](../../concept/config.md).
161161

162-
## Step 4: Run the SeaTunnel Application
162+
### Step 4: Run the SeaTunnel Application
163163

164164
You can start the application using the following command:
165165

docs/zh/connector-v2/sink/HdfsFile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ source {
109109
}
110110
}
111111
# 如果您想获取有关如何配置 seatunnel 的更多信息和查看完整的源端插件列表,
112-
# 请访问 https://seatunnel.apache.org/docs/category/source-v2
112+
# 请访问 https://seatunnel.apache.org/docs/connector-v2/source
113113
}
114114
115115
transform {
@@ -124,7 +124,7 @@ sink {
124124
file_format_type = "orc"
125125
}
126126
# 如果您想获取有关如何配置 seatunnel 的更多信息和查看完整的接收器插件列表,
127-
# 请访问 https://seatunnel.apache.org/docs/category/sink-v2
127+
# 请访问 https://seatunnel.apache.org/docs/connector-v2/sink
128128
}
129129
```
130130

docs/zh/connector-v2/source/HdfsFile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ source {
106106
fs.defaultFS = "hdfs://namenode001"
107107
}
108108
# 如果您想获取有关如何配置 seatunnel 和查看源插件完整列表的更多信息,
109-
# 请访问 https://seatunnel.apache.org/docs/category/source-v2
109+
# 请访问 https://seatunnel.apache.org/docs/connector-v2/source
110110
}
111111
112112
transform {
@@ -121,7 +121,7 @@ sink {
121121
file_format = "orc"
122122
}
123123
# 如果您想获取有关如何配置 seatunnel 和查看接收器插件完整列表的更多信息,
124-
# 请访问 https://seatunnel.apache.org/docs/category/sink-v2
124+
# 请访问 https://seatunnel.apache.org/docs/connector-v2/sink
125125
}
126126
```
127127

docs/zh/start-v2/locally/quick-start-seatunnel-engine.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ SeaTunnel控制台将会打印一些如下日志信息:
9595

9696
## 扩展示例:从 MySQL 到 Doris 批处理模式
9797

98-
## 步骤1:下载连接器
98+
### 步骤1:下载连接器
9999
首先,您需要在`${SEATUNNEL_HOME}/config/plugin_config`文件中加入连接器名称,然后,执行命令来安装连接器(当然,您也可以从 [Apache Maven Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/) 手动下载连接器,然后将其移动至`connectors/`目录下),最后,确认连接器`connector-jdbc``connector-doris``${SEATUNNEL_HOME}/connectors/`目录下即可。
100100

101101
```bash
@@ -111,11 +111,11 @@ connector-doris
111111
sh bin/install-plugin.sh
112112
```
113113

114-
## 步骤2:放入 MySQL 驱动
114+
### 步骤2:放入 MySQL 驱动
115115

116116
您需要下载 [jdbc driver jar package](https://mvnrepository.com/artifact/mysql/mysql-connector-java) 驱动,并放置在 `${SEATUNNEL_HOME}/lib/`目录下
117117

118-
## 步骤3:添加作业配置文件来定义作业
118+
### 步骤3:添加作业配置文件来定义作业
119119

120120
```bash
121121
cd seatunnel/job/
@@ -157,7 +157,7 @@ sink {
157157

158158
关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
159159

160-
## 步骤 4: 运行SeaTunnel应用程序
160+
### 步骤 4: 运行SeaTunnel应用程序
161161

162162
您可以通过以下命令启动应用程序:
163163

seatunnel-connectors-v2/connector-maxcompute/src/main/resources/maxcompute_to_maxcompute.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ source {
6666
}
6767

6868
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
69-
# please go to https://seatunnel.apache.org/docs/category/source-v2
69+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
7070
}
7171

7272
transform {
@@ -91,5 +91,5 @@ sink {
9191
}
9292

9393
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
94-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
94+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
9595
}

seatunnel-core/seatunnel-core-starter/src/test/resources/config.variables.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ source {
4040
}
4141

4242
# If you would like to get more information about how to configure seatunnel and see full list of source plugins,
43-
# please go to https://seatunnel.apache.org/docs/category/source-v2
43+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
4444
}
4545

4646
transform {
@@ -64,5 +64,5 @@ sink {
6464
}
6565

6666
# If you would like to get more information about how to configure seatunnel and see full list of sink plugins,
67-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
67+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
6868
}

seatunnel-e2e/seatunnel-connector-v2-e2e/connector-activemq-e2e/src/test/resources/fake_source_to_sink.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ source {
8282
# }
8383

8484
# If you would like to get more information about how to configure seatunnel and see full list of input plugins,
85-
# please go to https://seatunnel.apache.org/docs/category/source-v2
85+
# please go to https://seatunnel.apache.org/docs/connector-v2/source
8686

8787

8888
transform {
@@ -113,5 +113,5 @@ sink {
113113
# }
114114

115115
# If you would like to get more information about how to configure seatunnel and see full list of output plugins,
116-
# please go to https://seatunnel.apache.org/docs/category/sink-v2
116+
# please go to https://seatunnel.apache.org/docs/connector-v2/sink
117117

0 commit comments

Comments
 (0)