From 420fe11c2f32d8b2686da0802f90ba48324ba0a3 Mon Sep 17 00:00:00 2001 From: e-mhui <111486498+e-mhui@users.noreply.github.com> Date: Fri, 18 Aug 2023 17:31:56 +0800 Subject: [PATCH] [Doc] Use redo log instead of binlog in Oracle document (#2408) --- docs/content/connectors/oracle-cdc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/connectors/oracle-cdc.md b/docs/content/connectors/oracle-cdc.md index 9e576e242..44febec21 100644 --- a/docs/content/connectors/oracle-cdc.md +++ b/docs/content/connectors/oracle-cdc.md @@ -213,7 +213,7 @@ Flink SQL> CREATE TABLE products ( 'schema-name' = 'inventory', 'table-name' = 'products'); --- read snapshot and binlogs from products table +-- read snapshot and redo logs from products table Flink SQL> SELECT * FROM products; ``` **Note:** @@ -457,7 +457,7 @@ The Oracle CDC connector is a Flink Source connector which will read database sn 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.