Re: Kafka Connect Sink Connector for multiple JDBC sinks

2017-09-17 Thread M. Manna
Hi Jan, Forgive my ignorance, but I am slightly confused here. *"You should be able to get everything running on Windows anyhow"* - Confluent quickstart for JDBC Connector/Sink Connector requires Schema Registry up and running - currently Confluent does not provide any windows batch script list f

Re: Kafka Connect Sink Connector for multiple JDBC sinks

2017-09-16 Thread Jan Filipiak
Hi, entirely depends on how you want to serialize. You should be able to get everything running on Windows anyhow. Nothing expect the broker is really extensively using OS support for operating. To answer your initial question: You would simply start multiple sinks and give each sink a diffe

Re: Kafka Connect Sink Connector for multiple JDBC sinks

2017-09-16 Thread M. Manna
Yes I have, I do need to build and run Schema Registry as a pre-requisite isn't that correct? because the QuickStart seems to start AVRO - without AVRO you need your own implementation of transformer/serdes etc. I am only asking since my deployment platform is Windows Server 2012 - and Confluent p

Re: Kafka Connect Sink Connector for multiple JDBC sinks

2017-09-16 Thread Ted Yu
Have you looked at https://github.com/confluentinc/kafka-connect-jdbc ? On Sat, Sep 16, 2017 at 1:39 PM, M. Manna wrote: > Sure. But all these are not available via Kafka open source (requires > manual coding), correct? Only Confluence seems to provide some > off-the-shelf connector but Confluen

Re: Kafka Connect Sink Connector for multiple JDBC sinks

2017-09-16 Thread M. Manna
Sure. But all these are not available via Kafka open source (requires manual coding), correct? Only Confluence seems to provide some off-the-shelf connector but Confluent isn't compatible on Windows (yet), also correct? On 13 September 2017 at 18:11, Sreejith S wrote: > This is possible. Once

Re: Kafka Connect Sink Connector for multiple JDBC sinks

2017-09-13 Thread Sreejith S
This is possible. Once you have records in your put method, its up your logic how you are redirecting it to multiple jdbc connections for insertion. In my use case i have implemented many to many sources and sinks. Regards, Srijith On 13-Sep-2017 10:14 pm, "M. Manna" wrote: Hi, I need a littl