This is an automated email from the ASF dual-hosted git repository.

wanghailin pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 6296d0c873 [Fix][Doc] Fixed links in some documents (#6673)
6296d0c873 is described below

commit 6296d0c87347a0299ab54d0744ef4b10a055e953
Author: zuo <[email protected]>
AuthorDate: Wed Apr 10 22:24:33 2024 +0800

    [Fix][Doc] Fixed links in some documents (#6673)
---
 docs/en/connector-v2/formats/canal-json.md               |  4 ++--
 docs/en/connector-v2/formats/debezium-json.md            |  4 ++--
 docs/en/connector-v2/formats/ogg-json.md                 |  2 +-
 docs/en/seatunnel-engine/checkpoint-storage.md           |  1 -
 docs/zh/connector-v2/source/HdfsFile.md                  | 12 ++++++------
 docs/zh/start-v2/locally/quick-start-flink.md            |  2 +-
 docs/zh/start-v2/locally/quick-start-seatunnel-engine.md |  6 +++---
 docs/zh/start-v2/locally/quick-start-spark.md            |  2 +-
 8 files changed, 16 insertions(+), 17 deletions(-)

diff --git a/docs/en/connector-v2/formats/canal-json.md 
b/docs/en/connector-v2/formats/canal-json.md
index 1697a8c618..02e185bee5 100644
--- a/docs/en/connector-v2/formats/canal-json.md
+++ b/docs/en/connector-v2/formats/canal-json.md
@@ -69,10 +69,10 @@ Canal provides a unified format for changelog, here is a 
simple example for an u
 }
 ```
 
-Note: please refer to Canal documentation about the meaning of each fields.
+Note: please refer to [Canal 
documentation](https://github.com/alibaba/canal/wiki) about the meaning of each 
fields.
 
 The MySQL products table has 4 columns (id, name, description and weight).
-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.
+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.
 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.
 
 ```bash
diff --git a/docs/en/connector-v2/formats/debezium-json.md 
b/docs/en/connector-v2/formats/debezium-json.md
index d1deebfef9..18b900f369 100644
--- a/docs/en/connector-v2/formats/debezium-json.md
+++ b/docs/en/connector-v2/formats/debezium-json.md
@@ -62,10 +62,10 @@ Debezium provides a unified format for changelog, here is a 
simple example for a
 }
 ```
 
-Note: please refer to Debezium documentation about the meaning of each fields.
+Note: please refer to [Debezium 
documentation](https://debezium.io/documentation/reference/2.5/connectors/mysql.html#mysql-events)
 about the meaning of each fields.
 
 The MySQL products table has 4 columns (id, name, description and weight).
-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.
+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.
 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.
 
 **In this config, you must specify the `schema` and 
`debezium_record_include_schema` options **
diff --git a/docs/en/connector-v2/formats/ogg-json.md 
b/docs/en/connector-v2/formats/ogg-json.md
index 629edde72e..b6d53d020c 100644
--- a/docs/en/connector-v2/formats/ogg-json.md
+++ b/docs/en/connector-v2/formats/ogg-json.md
@@ -51,7 +51,7 @@ Ogg provides a unified format for changelog, here is a simple 
example for an upd
 }
 ```
 
-Note: please refer to documentation about the meaning of each fields.
+Note: please refer to [Debezium 
documentation](https://debezium.io/documentation/reference/2.5/connectors/oracle.html#oracle-events)
 about the meaning of each fields.
 
 The Oracle products table has 4 columns (id, name, description and weight).
 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 --git a/docs/en/seatunnel-engine/checkpoint-storage.md 
b/docs/en/seatunnel-engine/checkpoint-storage.md
index a04a84197d..c16084b02a 100644
--- a/docs/en/seatunnel-engine/checkpoint-storage.md
+++ b/docs/en/seatunnel-engine/checkpoint-storage.md
@@ -85,7 +85,6 @@ if you used SimpleAWSCredentialsProvider (can be obtained 
from the Amazon Securi
 you can config like this:
 
 ```yaml
-``` yaml
 
 seatunnel:
     engine:
diff --git a/docs/zh/connector-v2/source/HdfsFile.md 
b/docs/zh/connector-v2/source/HdfsFile.md
index c9c1667da0..efb24571c8 100644
--- a/docs/zh/connector-v2/source/HdfsFile.md
+++ b/docs/zh/connector-v2/source/HdfsFile.md
@@ -10,15 +10,15 @@
 
 ## 主要特性
 
-- [x] [批处理](../../../en/concept/connector-v2-features.md)
-- [ ] [流处理](../../../en/concept/connector-v2-features.md)
-- [x] [精确一次](../../../en/concept/connector-v2-features.md)
+- [x] [批处理](../../concept/connector-v2-features.md)
+- [ ] [流处理](../../concept/connector-v2-features.md)
+- [x] [精确一次](../../concept/connector-v2-features.md)
 
 在一次 pollNext 调用中读取分片中的所有数据。将读取的分片保存在快照中。
 
-- [x] [列投影](../../../en/concept/connector-v2-features.md)
-- [x] [并行度](../../../en/concept/connector-v2-features.md)
-- [ ] [支持用户定义的分片](../../../en/concept/connector-v2-features.md)
+- [x] [列投影](../../concept/connector-v2-features.md)
+- [x] [并行度](../../concept/connector-v2-features.md)
+- [ ] [支持用户定义的分片](../../concept/connector-v2-features.md)
 - [x] 文件格式
   - [x] 文本
   - [x] CSV
diff --git a/docs/zh/start-v2/locally/quick-start-flink.md 
b/docs/zh/start-v2/locally/quick-start-flink.md
index f95d13a91c..0349567d01 100644
--- a/docs/zh/start-v2/locally/quick-start-flink.md
+++ b/docs/zh/start-v2/locally/quick-start-flink.md
@@ -59,7 +59,7 @@ sink {
 
 ```
 
-关于配置的更多信息请查看[配置的基本概念](../../../en/concept/config.md)
+关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
 
 ## 步骤 4: 运行SeaTunnel应用程序
 
diff --git a/docs/zh/start-v2/locally/quick-start-seatunnel-engine.md 
b/docs/zh/start-v2/locally/quick-start-seatunnel-engine.md
index ae460740c4..6f14cd1159 100644
--- a/docs/zh/start-v2/locally/quick-start-seatunnel-engine.md
+++ b/docs/zh/start-v2/locally/quick-start-seatunnel-engine.md
@@ -52,7 +52,7 @@ sink {
 
 ```
 
-关于配置的更多信息请查看[配置的基本概念](../../../en/concept/config.md)
+关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
 
 ## 步骤 3: 运行SeaTunnel应用程序
 
@@ -91,6 +91,6 @@ SeaTunnel控制台将会打印一些如下日志信息:
 ## 此外
 
 
现在,您已经快速浏览了SeaTunnel,你可以通过[连接器](../../../en/connector-v2/source/FakeSource.md)来找到SeaTunnel所支持的所有source和sink。
-如果您想要了解更多关于信息,请参阅[SeaTunnel引擎](../../../en/seatunnel-engine/about.md).
+如果您想要了解更多关于信息,请参阅[SeaTunnel引擎](../../seatunnel-engine/about.md).
 
-SeaTunnel还支持在Spark/Flink中运行作业。您可以查看[Spark快速开始](../../../en/start-v2/locally/quick-start-spark.md)或[Flink快速开始](../../../en/start-v2/locally/quick-start-flink.md)。
+SeaTunnel还支持在Spark/Flink中运行作业。您可以查看[Spark快速开始](quick-start-spark.md)或[Flink快速开始](quick-start-flink.md)。
diff --git a/docs/zh/start-v2/locally/quick-start-spark.md 
b/docs/zh/start-v2/locally/quick-start-spark.md
index 64c71d5591..13e1bf17bb 100644
--- a/docs/zh/start-v2/locally/quick-start-spark.md
+++ b/docs/zh/start-v2/locally/quick-start-spark.md
@@ -59,7 +59,7 @@ sink {
 
 ```
 
-关于配置的更多信息请查看[配置的基本概念](../../../en/concept/config.md)
+关于配置的更多信息请查看[配置的基本概念](../../concept/config.md)
 
 ## 步骤 4: 运行SeaTunnel应用程序
 

Reply via email to