Skip to content

Commit

Permalink
Fix URL
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoff committed Sep 18, 2020
1 parent cb51719 commit 6d74e38
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions mssql-to-kafka-with-ksqldb/README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1 @@
Check that the MSSQL server plugin has been installed:

➜ curl -s localhost:8083/connector-plugins|jq '.[].class'

"io.debezium.connector.sqlserver.SqlServerConnector"

Launch ksqlDB CLI

docker exec --interactive --tty ksqldb ksql http://localhost:8088

Create the connector


CREATE SOURCE CONNECTOR SOURCE_MSSQL_ORDERS_01 WITH (
'connector.class' = 'io.debezium.connector.sqlserver.SqlServerConnector',
'database.hostname' = 'mssql',
'database.port' = '1433',
'database.user' = 'sa',
'database.password' = 'Admin123',
'database.dbname' = 'demo',
'database.server.name' = 'mssql',
'table.whitelist' = 'dbo.orders',
'database.history.kafka.bootstrap.servers' = 'broker:29092',
'database.history.kafka.topic' = 'dbz_dbhistory.mssql.asgard-01',
'decimal.handling.mode' = 'double'
);
See http://rmoff.net/2020/09/18/using-the-debezium-ms-sql-connector-with-ksqldb-embedded-kafka-connect/

0 comments on commit 6d74e38

Please sign in to comment.