Member since
01-29-2022
1
Post
0
Kudos Received
0
Solutions
02-08-2022
02:44 PM
1 Kudo
Looking at the serialized data, that seems like the Java binary serialization protocol. It seems to me that the producer is simply writing the HashMap java object directly to Kafka, rather than using a proper serializer (Avro, JSON, String, etc.) You should look into modifying your producer so that you can properly deserialize the data that you're reading from Kafka.
... View more