An open API service indexing awesome lists of open source software.

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

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"
}
}
```