Skip to content

Commit

Permalink
[Doc] Use redo log instead of binlog in Oracle document (apache#2408)
Browse files Browse the repository at this point in the history
(cherry picked from commit 420fe11)
  • Loading branch information
e-mhui authored and GOODBOY008 committed Oct 30, 2023
1 parent dfc00a4 commit 366af2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/connectors/oracle-cdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down Expand Up @@ -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.

Expand Down

0 comments on commit 366af2d

Please sign in to comment.