Hi.
I have to transfer data from kafka topics to SQL Server tables. One topic > one table. As I understand i should use kafka connect. I don’t know what does topic’s messages contains, I want to transfer them without any analizes to table with simple structure like
id - int
data - nvarchar(max) - put message here.
But now i see, that JDBC Sink Connector that can put message to SQL Server works with structured message, it want to know columns, primiry key and else.
I am afraid that my question is too simple, but googling does not show me any answer. Now I have two questions:
Can I put message from Kafka topic to SQL Server table in raw format into nvarchar field without custom development of connector?
Can somebody give me a link or sample of something like this, or show me the correct way?