Created 02-17-2016 07:49 PM
I am having trouble finding an example where someone serializes and deserializes a POJO over a Kafka queue. I can send simple strings across, but when I serialize and send a more complex object, I've been getting BufferUnderflows and ArrayOutOfBoundsExceptions.
Created 02-18-2016 08:41 PM
The solution that ended up working was to adapt the code I found here:
http://stackoverflow.com/questions/23755976/kafka-writing-custom-serializer
Created 02-17-2016 08:16 PM
take a look at this example I'm taking json and serializing it but should be same concept with kryo https://github.com/dbist/KafkaHBaseBenchmark
MappingConfig.java look at that class
Created 02-18-2016 08:41 PM
The solution that ended up working was to adapt the code I found here:
http://stackoverflow.com/questions/23755976/kafka-writing-custom-serializer
Created 02-18-2016 08:47 PM
@Adam Doyle I have accepted this as best answer. Thanks for the followup!