Closed naveengauba closed 6 years ago
This is because you are using an Avro schema when writing to Kafka, so Connect reads binary data and not JSON. You should change your Elasticsearch Sink configurations to be like:
value.converter=io.confluent.connect.avro.AvroConverter
value.converter.schema.registry.url=http://localhost:8081
@naveengauba, does this solve the problem you were having? If so, can we close this?
Duplicate of #153
Closing as resolved in #153
I am using this connector to dump data from Kafka to Elastic Search. The data in kafka topic looks like this.
The connect task throws this exception on starting kafka-connect.
I have also attached the broker.properties as well as connector properties. Please advise.