Rdsc 2368 add to the signaling table doc a section for oracle#3256
Rdsc 2368 add to the signaling table doc a section for oracle#3256
Conversation
…able to pipeline
…le to the pipeline
| @@ -114,14 +114,74 @@ The data-collections array lists tables by their fully-qualified names, using th | |||
|
|
|||
| #### Signaling Table Columns | |||
There was a problem hiding this comment.
In general, I think Redis' convention for headers is like this:
Signalling table columns.
@andy-stark-redis please, confirm.
In this case, we should apply to all headers and sub-headers in this doc.
| id VARCHAR(42) PRIMARY KEY, | ||
| type VARCHAR(32) NOT NULL, | ||
| data VARCHAR(2048) NULL |
There was a problem hiding this comment.
Indent one tab to the left.
| ); | ||
| ``` | ||
|
|
||
| 2. Add the property `debezium.source.signal.data.collection` to the `application.properties` file: |
There was a problem hiding this comment.
This is outdated, you should explain how to add this to the advanced section, no more application.properties.
|
|
||
| > Note: If the supplemental logging is enabled for the entire database you can skip this step. | ||
|
|
||
| 4. Restart the Debezium Server. |
|
|
||
| ## Example for Adding the `CUSTOMERS` table to the pipeline | ||
|
|
||
| 1. Add the `CUSTOMERS` table to the `debezium.source.table.include.list` property in the `application.properties` file: |
There was a problem hiding this comment.
application.properties is obsolete, use the new format of config.yaml.
| debezium.source.table.include.list=C##DBZUSER.PRODUCTS,C##DBZUSER.ORDERS,C##DBZUSER.CUSTOMERS | ||
| ``` | ||
|
|
||
| 2. Enable supplemental logging for the `CUSTOMERS`` table: |
|
|
||
| 2. Enable supplemental logging for the `CUSTOMERS`` table: | ||
|
|
||
| To enable supplemental logging for all the table columns: |
There was a problem hiding this comment.
remove, you have the same in line 168.
| ALTER TABLE C##DBZUSER.CUSTOMERS ADD SUPPLEMENTAL LOG DATA(ALL) COLUMNS | ||
| ``` | ||
|
|
||
| 3. Restart the `Debezium Server`. |
| VALUES ('1', 'execute-snapshot', '{"data-collections":["ORCLPDB1.C##DBZUSER.CUSTOMERS"],"type":"incremental"}'); | ||
| ``` | ||
|
|
||
| > Note: The column `id` is a unique string in the DEBEZIUM_SIGNAL table |
There was a problem hiding this comment.
DEBEZIUM_SIGNAL --> DEBEZIUM_SIGNAL.
|
Wrong repository, open a new PR here: |
No description provided.