Debezium SQL Server Connector
JVM since1.0.0 Native since1.0.0
Capture changes from an SQL Server database.
What’s inside
-
Debezium SQL Server Connector component, URI syntax:
debezium-sqlserver:name
Please refer to the above link for usage and configuration details.
Maven coordinates
Or add the coordinates to your existing project:
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-debezium-sqlserver</artifactId>
</dependency>
Check the User guide for more information about writing Camel Quarkus applications.
Usage
Depending on its configuration, SQL server may require SSL encryption on JDBC connections. In such a case, you will need to add quarkus.ssl.native=true
to your application.properties
. See also Quarkus native SSL guide and Native mode section of Camel Quarkus user guide.
Camel Quarkus limitations
While you can use any of the available Kafka offset stores in JVM mode, only the following offset stores are supported in native mode:
-
org.apache.kafka.connect.storage.FileOffsetBackingStore
-
org.apache.kafka.connect.storage.MemoryOffsetBackingStore
Please file an issue if you are missing some specific offset store in native mode.