Skip to content

Commit

Permalink
reference_crud.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sweng66 committed Dec 2, 2024
1 parent 3b1a896 commit 0202715
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions debezium/postgres-source-mod-corpus-association.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "postgres-source-mod-corpus-association",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"tasks.max": "1",
"slot.name": "debezium_mod_corpus_association",
"publication.name": "debezium_mod_corpus_association",
"database.hostname": "${PSQL_HOST}",
"database.port": "${PSQL_PORT}",
"database.user": "${PSQL_USERNAME}",
"database.password": "${PSQL_PASSWORD}",
"database.dbname" : "${PSQL_DATABASE}",
"database.server.name": "abc",
"table.include.list": "public.mod_corpus_association",
"column.include.list": "mod_corpus_association_id, mod_id, reference_id, corpus, date_sorted_inside_corpus, updated_by",
"database.history.kafka.bootstrap.servers": "dbz_kafka:9092",
"decimal.handling.mode" : "string",
"poll.interval.ms": "100",
"transforms": "extractKey,extractValue",
"transforms.extractKey.field": "mod_corpus_association_id",
"transforms.extractKey.type": "org.apache.kafka.connect.transforms.ExtractField$Key",
"transforms.extractValue.field": "after",
"transforms.extractValue.type": "org.apache.kafka.connect.transforms.ExtractField$Value",
"plugin.name": "pgoutput"
}
}

0 comments on commit 0202715

Please sign in to comment.