f5d30824fc
- Add root README and docs/ (architecture, hosts, disaster-recovery, operations) - Add compose/ for superset, forgejo, lam, cadvisor; unified deploy compose - Add scripts/deploy (deploy-atc-docker01.sh, container inventory export) - Add inventory/containers-atc-docker01.json snapshot - Add config READMEs for kafka and airflow; .env.example; expand .gitignore - Sync atclab helper scripts; update homepage/superset compose with env support
26 lines
688 B
Markdown
26 lines
688 B
Markdown
# Kafka Connect — Debezium connectors
|
|
|
|
JSON-definities voor CDC van databases naar Kafka.
|
|
|
|
## Connectors
|
|
|
|
| Bestand | Bron | Topic prefix |
|
|
|---------|------|--------------|
|
|
| `postgres-connector.json` | PostgreSQL op db02 | `postgres-sales` |
|
|
| `mysql-connector.json` | MySQL | — |
|
|
| `mongodb-connector.json` | MongoDB | — |
|
|
|
|
## Deploy
|
|
|
|
Vervang `PASSWORD_PLACEHOLDER` en pas host/poort aan. Registreer via Kafka Connect REST API op `atc-lake01` (Debezium `:8083`).
|
|
|
|
```bash
|
|
curl -X POST -H "Content-Type: application/json" \
|
|
--data @postgres-connector.json \
|
|
http://atc-lake01.dell-atc.lan:8083/connectors/
|
|
```
|
|
|
|
## Referentie
|
|
|
|
- Kafka UI: http://atc-kafka01.dell-atc.lan:9000/
|