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": "mysql-hr-connector",
"config": {
"connector.class": "io.debezium.connector.mysql.MySqlConnector",
"database.hostname": "10.0.21.51",
"database.port": "3306",
"database.user": "mo",
"database.password": "${DEBEZIUM_DB_PASSWORD}",
"database.server.id": "184054",
"topic.prefix": "mysql_hr",
"database.include.list": "hr",
"table.include.list": "hr.employee_events",
"schema.history.internal.kafka.bootstrap.servers": "10.0.21.36:9092",
"schema.history.internal.kafka.topic": "schema-changes.hr"
}
}