Kryo Deserialization fails with “KryoException: Buffer underflow”

前端 未结 3 1568
一向
一向 2021-02-13 07:21

I use Kryo to write Objects into byte arrays. It works fine. But when the byte arrays are converted into the Objects, it throws, com.esotericsoftware.kryo.KryoException: B

相关标签:
3条回答
  • 2021-02-13 07:46

    This happened to me when I was not correctly closing the Output / Input types. You need to make sure Kryo flushes everything but doing output.flush() or output.close().

    Second, look into kryo.writeClassAndObject(). You can then do kryo.readClassAndObject() and cast your object to the type it is supposed to be.

    0 讨论(0)
  • 2021-02-13 07:54

    This happend to me when I used the serializer in multiple threads. It's not thread safe, so if you use it in that way, it may give you "Buffer underflow" or other exceptions.

    0 讨论(0)
  • 2021-02-13 08:03

    I saw this error because of a true Java serialization issue; my class definition was not the same on the producer and consumer side (two different applications) and as a result I got this exception.

    Just wanted to leave this as an FYI if you hadn't checked that yet.

    0 讨论(0)
提交回复
热议问题