Skip to content
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

Enhance Credit Card Fraud Recipe: Give example source connector #1421

Open
chuck-confluent opened this issue Oct 12, 2022 · 0 comments
Open

Comments

@chuck-confluent
Copy link

I think the credit card fraud recipe would benefit from having an example source connector. Our technical marketing demo for database modernization does this with Oracle CDC:

There is a small issue when doing this -- you will get a "column name already exists" when creating the customers table because the connector will set a json record key called id. So you would have to rename the field and do something like this:

CREATE TABLE FD_CUSTOMERS (
  customer_id DOUBLE PRIMARY KEY
  ) WITH (KAFKA_TOPIC = 'ORCL.ADMIN.CUSTOMERS',KEY_FORMAT='JSON',VALUE_FORMAT = 'JSON_SR');

All subsequent references to the field would have to be updated too.

For more information, see

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant