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: content/integrate/redis-data-integration/reference/config-yaml-reference.md
+56Lines changed: 56 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,62 @@ See the Debezium documentation for more information about the specific connector
114
114
| `lob.enabled` | `string` | Oracle | Enables capturing and serialization of large object (CLOB, NCLOB, and BLOB) column values in change events.<br/>Default: `false`|
115
115
| `unavailable.value.placeholder` | Special | Oracle | Specifies the constant that the connector provides to indicate that the original value is unchanged and not provided by the database (this has the type `__debezium_unavailable_value`). |
116
116
117
+
### Oracle heartbeat mechanism
118
+
119
+
{{< note >}} This section is only relevant for Oracle installations where many hours
120
+
or days may pass between changes to the source database.
121
+
{{< /note >}}
122
+
123
+
Oracle uses *system change numbers* (SCNs) to record the order in which events happen
124
+
in a database. Any given event always has a higher SCN than any event that happened
125
+
previously, so the SCNs form a logical "timeline". (See
0 commit comments