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
Seems that between JDK 8 and JDK 9 the option -XX:+UseParNewGC has been depreciated, and removed in JDK 10. We use this in at least some of our calls to picard, for example, when we call MarkDuplicates in pipeline_bamstats.
What do we think is the best way forward here? We could pin java to JDK 9, or we could change the option to use a different garbage collector. Apparently people recommend -XX:+UseG1GC, which is supported JDK 7 or later. Or we could just leave it out.
Does anyone know why we specify a particular garbage collector, and a view on the best way to move forward. If I don't hear anything, I'll just remove the specification of a particular GC.
The text was updated successfully, but these errors were encountered:
Hi All,
Seems that between JDK 8 and JDK 9 the option -XX:+UseParNewGC has been depreciated, and removed in JDK 10. We use this in at least some of our calls to picard, for example, when we call MarkDuplicates in pipeline_bamstats.
What do we think is the best way forward here? We could pin java to JDK 9, or we could change the option to use a different garbage collector. Apparently people recommend -XX:+UseG1GC, which is supported JDK 7 or later. Or we could just leave it out.
Does anyone know why we specify a particular garbage collector, and a view on the best way to move forward. If I don't hear anything, I'll just remove the specification of a particular GC.
The text was updated successfully, but these errors were encountered: