Details
Description
This is an umbrella ticket for a long standing issue with Maven Resolver: Our concurrency support is mediocre in a way that if two or more threads try to download the same file and fail to queue those write actions nicely. The problem is that The SyncContext and the its factory provided by Maven Resolver does not employ any locking at all. As layed out in detail in MRESOLVER-114 we need striped read write locks on artifacts and its metadata. This issue shall track progress on it. Even Takari Concurrent Repository extension does not help because it is only intended to synchronize concurrent access by multple JVMs and not threads.
This improvement will provide solely a global locking sync context which will work in single JVM. It is a non-goal to make it work with mulitple JVMs. A downside of this solution is that is coarse, possible degregation of performance for the sake of stability.
Attachments
Attachments
Issue Links
- fixes
-
MRESOLVER-25 Resume support is broken under high concurrency
- Closed
-
MRESOLVER-114 ArtifactNotFoundExceptions when building in parallel
- Closed
- is related to
-
MRESOLVER-131 Introduce a Redisson-based SyncContextFactory
- Closed
-
MNG-2802 Concurrent-safe access to local Maven repository
- Closed
- is superceded by
-
MRESOLVER-130 Move GlobalSyncContextFactory to a separate module
- Closed
- relates to
-
MRESOLVER-178 Introduce a simple inter-process SyncContext
- Closed
- links to