Skip to content

Commit 6296d0c

Browse files
authored
[Fix][Doc] Fixed links in some documents (#6673)
1 parent 849d748 commit 6296d0c

File tree

8 files changed

+16
-17
lines changed

8 files changed

+16
-17
lines changed

Diff for: docs/en/connector-v2/formats/canal-json.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ Canal provides a unified format for changelog, here is a simple example for an u
6969
}
7070
```
7171

72-
Note: please refer to Canal documentation about the meaning of each fields.
72+
Note: please refer to [Canal documentation](https://github.com/alibaba/canal/wiki) about the meaning of each fields.
7373

7474
The MySQL products table has 4 columns (id, name, description and weight).
75-
The above JSON message is an update change event on the products table where the weight value of the row with id = 111 is changed from 5.18 to 5.15.
75+
The above JSON message is an update change event on the products table where the weight value of the row with id = 111 is changed from 5.15 to 5.18.
7676
Assuming the messages have been synchronized to Kafka topic products_binlog, then we can use the following SeaTunnel to consume this topic and interpret the change events.
7777

7878
```bash

Diff for: docs/en/connector-v2/formats/debezium-json.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ Debezium provides a unified format for changelog, here is a simple example for a
6262
}
6363
```
6464

65-
Note: please refer to Debezium documentation about the meaning of each fields.
65+
Note: please refer to [Debezium documentation](https://debezium.io/documentation/reference/2.5/connectors/mysql.html#mysql-events) about the meaning of each fields.
6666

6767
The MySQL products table has 4 columns (id, name, description and weight).
68-
The above JSON message is an update change event on the products table where the weight value of the row with id = 111 is changed from 5.18 to 5.15.
68+
The above JSON message is an update change event on the products table where the weight value of the row with id = 111 is changed from 5.18 to 5.17.
6969
Assuming the messages have been synchronized to Kafka topic products_binlog, then we can use the following Seatunnel conf to consume this topic and interpret the change events by Debezium format.
7070

7171
**In this config, you must specify the `schema` and `debezium_record_include_schema` options **

Diff for: docs/en/connector-v2/formats/ogg-json.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Ogg provides a unified format for changelog, here is a simple example for an upd
5151
}
5252
```
5353

54-
Note: please refer to documentation about the meaning of each fields.
54+
Note: please refer to [Debezium documentation](https://debezium.io/documentation/reference/2.5/connectors/oracle.html#oracle-events) about the meaning of each fields.
5555

5656
The Oracle products table has 4 columns (id, name, description and weight).
5757
The above JSON message is an update change event on the products table where the weight value of the row with id = 111 is changed from 5.18 to 5.15.

Diff for: docs/en/seatunnel-engine/checkpoint-storage.md

-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ if you used SimpleAWSCredentialsProvider (can be obtained from the Amazon Securi
8585
you can config like this:
8686

8787
```yaml
88-
``` yaml
8988
9089
seatunnel:
9190
engine:

Diff for: docs/zh/connector-v2/source/HdfsFile.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
1111
## 主要特性
1212

13-
- [x] [批处理](../../../en/concept/connector-v2-features.md)
14-
- [ ] [流处理](../../../en/concept/connector-v2-features.md)
15-
- [x] [精确一次](../../../en/concept/connector-v2-features.md)
13+
- [x] [批处理](../../concept/connector-v2-features.md)
14+
- [ ] [流处理](../../concept/connector-v2-features.md)
15+
- [x] [精确一次](../../concept/connector-v2-features.md)
1616

1717
在一次 pollNext 调用中读取分片中的所有数据。将读取的分片保存在快照中。
1818

19-
- [x] [列投影](../../../en/concept/connector-v2-features.md)
20-
- [x] [并行度](../../../en/concept/connector-v2-features.md)
21-
- [ ] [支持用户定义的分片](../../../en/concept/connector-v2-features.md)
19+
- [x] [列投影](../../concept/connector-v2-features.md)
20+
- [x] [并行度](../../concept/connector-v2-features.md)
21+
- [ ] [支持用户定义的分片](../../concept/connector-v2-features.md)
2222
- [x] 文件格式
2323
- [x] 文本
2424
- [x] CSV

Diff for: docs/zh/start-v2/locally/quick-start-flink.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ sink {
5959
6060
```
6161

62-
关于配置的更多信息请查看[配置的基本概念](../../../en/concept/config.md)
62+
关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
6363

6464
## 步骤 4: 运行SeaTunnel应用程序
6565

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ sink {
5252
5353
```
5454

55-
关于配置的更多信息请查看[配置的基本概念](../../../en/concept/config.md)
55+
关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
5656

5757
## 步骤 3: 运行SeaTunnel应用程序
5858

@@ -91,6 +91,6 @@ SeaTunnel控制台将会打印一些如下日志信息:
9191
## 此外
9292

9393
现在,您已经快速浏览了SeaTunnel,你可以通过[连接器](../../../en/connector-v2/source/FakeSource.md)来找到SeaTunnel所支持的所有source和sink。
94-
如果您想要了解更多关于信息,请参阅[SeaTunnel引擎](../../../en/seatunnel-engine/about.md).
94+
如果您想要了解更多关于信息,请参阅[SeaTunnel引擎](../../seatunnel-engine/about.md).
9595

96-
SeaTunnel还支持在Spark/Flink中运行作业。您可以查看[Spark快速开始](../../../en/start-v2/locally/quick-start-spark.md)或[Flink快速开始](../../../en/start-v2/locally/quick-start-flink.md)。
96+
SeaTunnel还支持在Spark/Flink中运行作业。您可以查看[Spark快速开始](quick-start-spark.md)或[Flink快速开始](quick-start-flink.md)。

Diff for: docs/zh/start-v2/locally/quick-start-spark.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ sink {
5959
6060
```
6161

62-
关于配置的更多信息请查看[配置的基本概念](../../../en/concept/config.md)
62+
关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
6363

6464
## 步骤 4: 运行SeaTunnel应用程序
6565

0 commit comments

Comments
 (0)