I want to use a kafka connect jdbc sink connector with the avro converter.
Those are my avro configs :
"key.converter":"io.confluent.connect.avro.AvroConverter",
"key.converter.schema.registry.url" : "http://myurl.com" ,
"value.converter":"io.confluent.connect.avro.AvroConverter",
"value.converter.schema.registry.url" : "http://myurl.com" ,
Schemas are set to false
key.converter.schemas.enable=false
value.converter.schemas.enable=false
Now, when i start the connector, i get this error
Caused by: org.apache.kafka.connect.errors.ConnectException: Value schema must be of type Struct
From what i read, Struct are for json schemas, right ? i should not have any struct if i am using an avro schema ?
Avro schema types are : record, enum, arrays, maps, unions and fixed but there is no struct.
What am i missing ?
Thanks !!