You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Kafka Topic has AVRO Flume Event. I understand that the event in the topic has both the Schema as well as Payload. I have provided below Kafka Connect Sink Properties
The Output avro file also gets created but the problem is that the application is not able to parse the AVRO file and getting error. I checked the output avro file in S3 bucket and tried to parse myself and getting error.
As seen from the image, the avro.schema shows NULL and byte. I am using Confluent Kafka S3 Sink Connector and created AWS Kafka Plugin and then referred that plugin in AWS MSK Connect.
Can someone please help and let me know what exactly I am doing wrong ?
The text was updated successfully, but these errors were encountered:
AvroFormat only requires a Struct Connect type with some Schema...
You need to define your own value.converter class, not use the default you've set. The Registry isn't be required to store Avro data, e.g. I've tested storing Avro from JSONConverter with schemas enabled
Referring to
The Kafka Topic has AVRO Flume Event. I understand that the event in the topic has both the Schema as well as Payload. I have provided below Kafka Connect Sink Properties
The Output avro file also gets created but the problem is that the application is not able to parse the AVRO file and getting error. I checked the output avro file in S3 bucket and tried to parse myself and getting error.
As seen from the image, the avro.schema shows NULL and byte. I am using Confluent Kafka S3 Sink Connector and created AWS Kafka Plugin and then referred that plugin in AWS MSK Connect.
Can someone please help and let me know what exactly I am doing wrong ?
The text was updated successfully, but these errors were encountered: