--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/90e4688a-d743-4a81-8e5c-462067e64f8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/CA%2BvjBRhLgCV1vq2WFsJHGnoFKvd_E6MQUjz2OTOYBK1EB_iB%3Dg%40mail.gmail.com.
Hi Todd,We have just gone through the exact same scenario. We didn't find a connector at the time (there might be one now) . The way we solved it is to have Kafka connect calling a stored proc with all the needed cdc "stuff" contained in it and throw that into Kafka.Our use case was a little different because we wanted to have "messages" and not just raw rows. E.g. An artist is updated, so we also wanted info from the artist table and the tracks table combined on one row.Thanks,Ben
Hello,--We are trying to replicate a MSSQL database into Kafka with Connect. I've seen MySQL BinLog and Postgres connectors, but haven't found one for MSSQL's CDC. Before we begin writing it ourselves, is anyone aware of an available CDC connector?Thanks,ToddPlatform EngineerAthlinks
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platform+unsub...@googlegroups.com.
To post to this group, send email to confluent-platform@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/90e4688a-d743-4a81-8e5c-462067e64f8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hello Ben,Is it possible to poll a custom CDC stored procedure from Kafka connect. When I was reading the documents the configs had either table names or SQL selects.Thanks,
Ajeeth
On Saturday, June 4, 2016 at 12:00:59 PM UTC+1, Ben Davison wrote:
Hi Todd,We have just gone through the exact same scenario. We didn't find a connector at the time (there might be one now) . The way we solved it is to have Kafka connect calling a stored proc with all the needed cdc "stuff" contained in it and throw that into Kafka.Our use case was a little different because we wanted to have "messages" and not just raw rows. E.g. An artist is updated, so we also wanted info from the artist table and the tracks table combined on one row.Thanks,Ben
Hello,--We are trying to replicate a MSSQL database into Kafka with Connect. I've seen MySQL BinLog and Postgres connectors, but haven't found one for MSSQL's CDC. Before we begin writing it ourselves, is anyone aware of an available CDC connector?Thanks,ToddPlatform EngineerAthlinks
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/90e4688a-d743-4a81-8e5c-462067e64f8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
This email, including attachments, is private and confidential. If you have received this email in error please notify the sender and delete it from your system. Emails are not secure and may contain viruses. No liability can be accepted for viruses that might be transferred by this email or any attachment. Any unauthorised copying of this message or unauthorised distribution and publication of the information contained herein are prohibited.
7digital Limited. Registered office: 69 Wilson Street, London EC2A 2BB.
Registered in England and Wales. Registered No. 04843573.
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/61a31701-a384-4cd8-9ac1-cbcb73b485d6%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platform+unsub...@googlegroups.com.
To post to this group, send email to confluent-platform@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/90e4688a-d743-4a81-8e5c-462067e64f8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
This email, including attachments, is private and confidential. If you have received this email in error please notify the sender and delete it from your system. Emails are not secure and may contain viruses. No liability can be accepted for viruses that might be transferred by this email or any attachment. Any unauthorised copying of this message or unauthorised distribution and publication of the information contained herein are prohibited.
7digital Limited. Registered office: 69 Wilson Street, London EC2A 2BB.
Registered in England and Wales. Registered No. 04843573.
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platform+unsub...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/61a31701-a384-4cd8-9ac1-cbcb73b485d6%40googlegroups.com.
FAILURE: Build failed with an exception.
* Where:
Build file '/Users/admin/Downloads/kafka-connect-mssqlserver-cdc-master/build.gradle' line: 19
* What went wrong:
An exception occurred applying plugin request [id: 'org.ajoberstar.release-opinion', version: '1.7.2']
> Failed to apply plugin [id 'org.ajoberstar.release-base']
> Could not get unknown property 'grgit' for root project 'kafka-connect-mssqlserver-cdc' of type org.gradle.api.Project.
Came across this thread and wanted to just let you all know that I currently have beta version of a SQL Server CDC connector implemented. It resembles the Confluent JDBC source connection but uses SQL Server specific functions to query the underlying tables and does not require custom stored procedure/query. I am currently in the process of writing system tests to confirm functionality and should be done with this in the near future. Please check it and feel free to contribute or provide suggestions or feedback.John
Zeeshan,It looks like you downloaded the project as a zip which by default has not .git folder. The error you are receiving happens when the release-opinion plugin cannot find the git info it needs to infer a release version (I used this plugin to tag my releases). I can probably add a fix for this in the near future but your best bet right now would be to clone the project directly and then build as follows:2. gradlew.bat connect:build* There is a gradle sub project for integrations test, but this will only work if you have an instance of SQL server installed and configured locally. I will try to add more clearer steps and directions on how to build and test the project sometime soon. Hope that helps