-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rdsc 2368 add to the signaling table doc a section for oracle #3256
base: master
Are you sure you want to change the base?
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indent one tab to the left.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
k,done
); | ||
``` | ||
|
||
2. Add the property `debezium.source.signal.data.collection` to the `application.properties` file: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Show how.
|
||
## 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
redundant closing `.
|
||
2. Enable supplemental logging for the `CUSTOMERS`` table: | ||
|
||
To enable supplemental logging for all the table columns: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove, you have the same in line 168.
ALTER TABLE C##DBZUSER.CUSTOMERS ADD SUPPLEMENTAL LOG DATA(ALL) COLUMNS | ||
``` | ||
|
||
3. Restart the `Debezium Server`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
show how.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DEBEZIUM_SIGNAL --> DEBEZIUM_SIGNAL
.
Wrong repository, open a new PR here: |
No description provided.