https://github.com/jailtonjunior94/go-kafka
🔬 Golang, Kafka, Zookeeper, Debezium, Go Fiber, Sql Server e Slack
https://github.com/jailtonjunior94/go-kafka
debezium gofiber golang kafka slack sqlserver zookeeper
Last synced: 3 months ago
JSON representation
🔬 Golang, Kafka, Zookeeper, Debezium, Go Fiber, Sql Server e Slack
- Host: GitHub
- URL: https://github.com/jailtonjunior94/go-kafka
- Owner: JailtonJunior94
- Created: 2021-01-24T18:35:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-23T22:49:32.000Z (over 3 years ago)
- Last Synced: 2025-06-25T17:08:19.999Z (4 months ago)
- Topics: debezium, gofiber, golang, kafka, slack, sqlserver, zookeeper
- Language: Go
- Homepage:
- Size: 5.63 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Golang + SQL Server + Kafka + Debezium + Slack
### Cadastrando um novo conector
POST http://localhost:8083/connectors
```
{
"name": "sqlserver-customers-connector",
"config": {
"connector.class": "io.debezium.connector.sqlserver.SqlServerConnector",
"tasks.max": 1,
"database.hostname": "mssql",
"database.port": "1433",
"database.user": "sa",
"database.password": "@docker@2021",
"database.dbname": "KafkaPoC",
"database.server.name": "kafka_poc_server",
"table.include.list": "dbo.Customers",
"database.history.kafka.bootstrap.servers": "kafka:9092",
"database.history.kafka.topic": "dbhistory.customers"
}
}
```