JDK-8015268 : NPG: 2.5% regression in young GC times on CRM Sales Opty
  • Type: Bug
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: hs25
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2013-05-23
  • Updated: 2013-06-11
  • Resolved: 2013-05-29
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8 Other
8Fixed hs25Fixed
Related Reports
Relates :  
Description
Collect&analyze has showed this to be because of the extra ClassLoaderDataGraph scanning, which has been added to the ScavengeRootsTask::_system_dictionary task.
Comments
Fix is out for review: http://mail.openjdk.java.net/pipermail/hotspot-gc-dev/2013-May/007353.html
28-05-2013

The _system_dictionary task already caused load balancing issues for this benchmark, adding more work to that task didn't help. The suggested fix is to split the task into two tasks, one for the system dictionary and one for the class loader data graph. We might also want to reorder the tasks to make sure that we don't run these length tasks at the end of the root scanning.
23-05-2013