This is an automated email from the ASF dual-hosted git repository. zirui pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/inlong-website.git
The following commit(s) were added to refs/heads/master by this push: new e5fc78b341 [INLONG-835][Doc] Fix Oracle document errors (#836) e5fc78b341 is described below commit e5fc78b341bc5b45b86f6c1febafed6aea17bd82 Author: e-mhui <111486498+e-m...@users.noreply.github.com> AuthorDate: Fri Aug 18 15:09:16 2023 +0800 [INLONG-835][Doc] Fix Oracle document errors (#836) --- docs/data_node/extract_node/oracle-cdc.md | 4 ++-- .../current/data_node/extract_node/oracle-cdc.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/data_node/extract_node/oracle-cdc.md b/docs/data_node/extract_node/oracle-cdc.md index 80609954aa..d4a5dac6a4 100644 --- a/docs/data_node/extract_node/oracle-cdc.md +++ b/docs/data_node/extract_node/oracle-cdc.md @@ -220,7 +220,7 @@ Flink SQL> CREATE TABLE oracle_extract_node ( 'schema-name' = 'inlong', 'table-name' = 'user'); --- Read snapshot and binlogs from products table +-- Read snapshot and redo logs from products table Flink SQL> SELECT * FROM oracle_extract_node; ``` **Note:** @@ -342,7 +342,7 @@ The Oracle Extract Node is a Flink Source connector which will read database sna The config option `scan.startup.mode` specifies the startup mode for Oracle CDC consumer. The valid enumerations are: -- `initial` (default): Performs an initial snapshot on the monitored database tables upon first startup, and continue to read the latest binlog. +- `initial` (default): Performs an initial snapshot on the monitored database tables upon first startup, and continue to read the latest redo log. - `latest-offset`: Never to perform a snapshot on the monitored database tables upon first startup, just read from the change since the connector was started. diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/extract_node/oracle-cdc.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/extract_node/oracle-cdc.md index e5dd8f0fae..f4400c0219 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/extract_node/oracle-cdc.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/extract_node/oracle-cdc.md @@ -345,7 +345,7 @@ Oracle Extract 节点是一个 Flink Source 连接器,它将首先读取数据 配置选项 `scan.startup.mode` 指定 Oracle Extract 节点消费者的启动模式。有效的枚举是: -- `initial` (默认): 首次启动时对被监控的数据库表进行初始快照,并继续读取最新的 Binlog。 +- `initial` (默认): 首次启动时对被监控的数据库表进行初始快照,并继续读取最新的 Redo Log。 - `latest-offset`: 永远不要在第一次启动时对受监控的数据库表执行快照,只需从自连接器启动以来的更改。 _注意: `scan.startup.mode` 选项的机制依赖于 Debezium 的`snapshot.mode` 配置。所以请不要一起使用它们。如果您在 DDL 表中同时指定了 `scan.startup.mode` 和 `debezium.snapshot.mode` 选项,可能会导致 `scan.startup.mode` 不起作用。_