You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull request #52 uses JavaSerializer for htsjdk.variant.variantcontext.LazyGenotypesContext to workaround issues with serializing transient fields.
Java binary serialization is demonstratively worse than Kryo, in both read/write speed and size in memory, so we should follow up with an investigation of how much this matters for performance in Disq for genotypes. Other options might include: modify LazyGenotypesContext so that it can be serialized by Kryo, write a custom Kryo serializer for LazyGenotypesContext, etc.
The text was updated successfully, but these errors were encountered:
Pull request #52 uses
JavaSerializer
forhtsjdk.variant.variantcontext.LazyGenotypesContext
to workaround issues with serializing transient fields.Java binary serialization is demonstratively worse than Kryo, in both read/write speed and size in memory, so we should follow up with an investigation of how much this matters for performance in Disq for genotypes. Other options might include: modify LazyGenotypesContext so that it can be serialized by Kryo, write a custom Kryo serializer for LazyGenotypesContext, etc.
The text was updated successfully, but these errors were encountered: