Thomas Heigl

Results 155 comments of Thomas Heigl

Not yet. Is it strictly necessary for your reproducer to work on binary data from rocksdb? Or can you reproduce this in a real unit test. I.e. serialize the data...

@ivan4oto: Yeah that usage looks alright. > We have the issue only on a cloud k8s cluster environment. When we load the same data locally we dont have the issue....

I'm also using Kryo to store data in Redis and never had an issue like that. One thing that both of you could try is this: ```java kryo.setOptimizedGenerics(false); ``` This...

You are right. It is quite surprising that this has never come up before. Kryo uses the default `MapSerializer` for `LinkedHashMap` that is completely unaware of this parameter. Your best...

The `ExternalizableSerializer` has not been touched in a very long time. I'm guessing that not many people are using it. What use case do you have that prevents you from...

Thanks for the detailed report. What error message are you seeing? Is your issue the same as #907?

Can you test if the problem goes away with chunked encoding? You could also try disabling generics optimization with `kryo.setOptimizedGenerics(false);`. This is definitely a bug, but one that is difficult...

> If you force Fury to use the default JIT/Codegen serializer, the writeObject/readObject method in SimplePrincipalCollection won't be invoked, which may be unexpected if users did some special action in...

Ok thanks! I will use this for now, but it requires casting and the method itself is marked as internal. It would be great to have a prettier option to...

Thanks for the report. I'm wondering why these classes are instantiated by `SunReflectionFactoryInstantiator`. They have a no-arg constructor that should be called by Kryo's `DefaultInstantiatorStrategy`. What does the Kryo setup...