nessie
nessie copied to clipboard
Use kryo instead of java serialization for the `Reference` used in Spark
As a follow-up after:
https://github.com/projectnessie/nessie/pull/3561#pullrequestreview-905457313
We should try to use kryo
serialization mechanism.
Steps to do it:
- Revert whole #3561
- remove Serializable from Reference.java
- run the testcase
AbstractRestGCTest
, it will fail withserializable
exception. - explore using Kryo or a custom serializer for Reference.
@tomekl007 do we still need this ticket?