Skip to content

Instantly share code, notes, and snippets.

@AnanthaRajuC
Last active August 14, 2022 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnanthaRajuC/49ec813281221879e412a4e51d1a3136 to your computer and use it in GitHub Desktop.
Save AnanthaRajuC/49ec813281221879e412a4e51d1a3136 to your computer and use it in GitHub Desktop.
debezium-postgresql-connector
curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" 127.0.0.1:8083/connectors/ -d '{
"name": "sample_db-connector",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"plugin.name": "pgoutput",
"database.hostname": "postgres",
"database.port": "5432",
"database.user": "admin",
"database.password": "admin",
"database.dbname": "sample_db",
"database.server.name": "postgres",
"table.include.list": "public.student"
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment