Skip to content

Instantly share code, notes, and snippets.

@gunnarmorling
Last active November 29, 2024 10:39
Show Gist options
  • Save gunnarmorling/ce21425e28f0a90ab3a60522e7c3e46a to your computer and use it in GitHub Desktop.
Save gunnarmorling/ce21425e28f0a90ab3a60522e7c3e46a to your computer and use it in GitHub Desktop.

Comments in JSON

Look, ma:

{
  "connector.class" : "io.debezium.connector.postgresql.PostgresConnector",
  "tasks.max" : "1",
  
  // connection details
  "database.hostname" : "pgbouncer",
  "database.port" : "5432",
  "database.user" : "user",
  "database.password" : "top-secret",
  "database.dbname" : "inventorydb",
  "topic.prefix" : "dbserver1",
  "schema.include.list" : "inventory",
  
  // using the built-in logical decoding plug-in
  "plugin.name" : "pgoutput"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment