Open erikjmiller opened 8 years ago
@erikmiller did you ever make progress on this?
the confluent world uses a 5 byte binary header and is incompatible with franzy. described here http://docs.confluent.io/current/schema-registry/docs/serializer-formatter.html#wire-format
https://github.com/confluentinc/schema-registry/tree/master/avro-serializer
I've been using the following code to test pushing an avro object to a confluent 3.0 server. When I use 'bin/kafka-avro-console-consumer...' command I get the following error.
org.apache.kafka.common.errors.SerializationException: Error deserializing Avro message for id -1 Caused by: org.apache.kafka.common.errors.SerializationException: Unknown magic byte!
Running the normal 'bin/kafka-console-consumer' I get the data back as a byte stream with out any errors. (some data readable some not)
I'm using the following packages with along with this one....
I also tried using updated versions of..
Is this a known issue? How should the MAGIC_BYTE get into the message?