Document lakehouse Debezium connectors and updated docker inventory.

Add atc-lake01 compose with s3-kafka-consumer; redact DB passwords in connector JSON.
This commit is contained in:
mo
2026-06-04 02:27:23 +02:00
parent 8f2bb06348
commit 8eb64381e3
6 changed files with 136 additions and 2 deletions
@@ -0,0 +1,16 @@
{
"name": "postgres-sales-connector",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"database.hostname": "10.0.21.51",
"database.port": "5432",
"database.user": "mo",
"database.password": "${DEBEZIUM_DB_PASSWORD}",
"database.dbname": "postgres",
"topic.prefix": "postgres_sales",
"schema.include.list": "public",
"table.include.list": "public.sales_orders",
"plugin.name": "pgoutput",
"publication.name": "dbz_publication"
}
}