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
Caused by: org.apache.kafka.connect.errors.DataException: Failed to deserialize data for topic topic1 to Avro:
Caused by: org.apache.kafka.common.errors.SerializationException: Error retrieving Avro value schema version for id 7
Since facing an error on avro now using JSON method:
Now producing message on redpanda as: {"schema":{"type":"struct","fields":[{"type":"string","optional":false,"field":"id"},{"type":"string","optional":false,"field":"emailid"},{"type":"string","optional":false,"field":"ip"},{"type":"string","optional":false,"field":"browser"},{"type":"string","optional":false,"field":"segment"}]},"payload":{"id":"9999993","emailid":"[email protected]","ip":"192.112.222.183","browser":"Firefox-57.0.4","segment":"purchase"}}
But this method is not efficient in case producing large numbers of messages.
So looking for Avro format but showing deserializer error. Are there any changes that have to do with sink or connector properties?
The text was updated successfully, but these errors were encountered:
Using redpanda as a broker
Using Redpanda's default schema registry
Actual payload:
{"id":"123","emailid":"[email protected]","ip":"192.112.222.183","browser":"Firefox-57.0.4","segment":"home"}
connector properties:
sink properties:
facing deserializer error:
Since facing an error on avro now using JSON method:
connector:
sink property:
Now producing message on redpanda as:
{"schema":{"type":"struct","fields":[{"type":"string","optional":false,"field":"id"},{"type":"string","optional":false,"field":"emailid"},{"type":"string","optional":false,"field":"ip"},{"type":"string","optional":false,"field":"browser"},{"type":"string","optional":false,"field":"segment"}]},"payload":{"id":"9999993","emailid":"[email protected]","ip":"192.112.222.183","browser":"Firefox-57.0.4","segment":"purchase"}}
But this method is not efficient in case producing large numbers of messages.
So looking for Avro format but showing deserializer error. Are there any changes that have to do with sink or connector properties?
The text was updated successfully, but these errors were encountered: