You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/components/pages/inputs/oracledb_cdc.adoc
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ input:
42
42
connection_string: oracle://username:password@host:port/service_name # No default (required)
43
43
wallet_path: /opt/oracle/wallet # No default (optional)
44
44
wallet_password: "" # No default (optional)
45
-
stream_snapshot: false
45
+
snapshot_mode: "" # No default (optional)
46
46
max_parallel_snapshot_tables: 1
47
47
snapshot_max_batch_size: 1000
48
48
logminer:
@@ -84,7 +84,7 @@ input:
84
84
connection_string: oracle://username:password@host:port/service_name # No default (required)
85
85
wallet_path: /opt/oracle/wallet # No default (optional)
86
86
wallet_password: "" # No default (optional)
87
-
stream_snapshot: false
87
+
snapshot_mode: "" # No default (optional)
88
88
max_parallel_snapshot_tables: 1
89
89
snapshot_max_batch_size: 1000
90
90
logminer:
@@ -183,20 +183,20 @@ This field contains sensitive information that usually shouldn't be added to a c
183
183
*Type*: `string`
184
184
185
185
186
-
=== `stream_snapshot`
186
+
=== `snapshot_mode`
187
187
188
-
If set to true, the connector will query all the existing data as a part of snapshot process. Otherwise, it will start from the current System Change Number position.
188
+
Controls snapshot behaviour. `none` (default) skips snapshotting and starts streaming from the current SCN. `snapshot_only` performs a full snapshot, persists the SCN checkpoint, then stops without streaming. `snapshot_and_stream` performs a full snapshot then transitions to streaming.
Description("If set to true, the connector will query all the existing data as a part of snapshot process. Otherwise, it will start from the current System Change Number position.").
Description("Controls snapshot behaviour. `none` (default) skips snapshotting and starts streaming from the current SCN. `snapshot_only` performs a full snapshot, persists the SCN checkpoint, then stops without streaming. `snapshot_and_stream` performs a full snapshot then transitions to streaming.").
0 commit comments