Make AbstractVCFCodec thread-safe, allowing for multi-threaded VariantContext genotype decoding #1636
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Problem: Processing multiple
VariantContext
objects concurrently results in shared data due to the stateful nature ofAbstractVCFCodec
. Internal data structures (parts
,genotypeParts
,alleleMap
,lineNo
) are re-used to parse theLazyGenotypesContext
contained withinVariantContext
objects; this re-use makesAbstractVCFCodec
not thread-safe - callingLazyGenotypesContext.decode()
in concurrent threads results in the genotypes of oneVariantContext
leaking over to otherVariantContext
objects and overwriting the genotypes there.Solution: I have wrapped the internal state objects of
AbstractVCFCodec
inThreadLocal
objects. This will give each parsing thread its own copies of the internal state, removing cross-thread information leakage. This solution should not appreciably affect existing workflows, as single threaded applications will still maintain the resource re-use optimization. This solution also removes the need for expensive and rate-limiting synchronization.I believe this fixes #1026, as well as the issue reported here.
This also resolves the
// todo: make this thread safe?
comment on line 69 ofAbstractVCFCodec
.Things to think about before submitting: