JDK-8028053 : Reduce region fragmentation by separating region allocations by type
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: hs25,8
  • Priority: P4
  • Status: Resolved
  • Resolution: Duplicate
  • Submitted: 2013-11-08
  • Updated: 2015-10-28
  • Resolved: 2015-10-28
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 9
9Resolved
Related Reports
Duplicate :  
Description
Enterprise applications that frequently allocate large objects partially suffer from region fragmentation: i.e. the LOB cannot be allocated directly without GC because there are not enough contiguous regions available.

One idea to mitigate this issue is to allocate "old gen" type regions (old, LOB) at one end of the logical heap, while allocating "young gen" type regions at the other end (preferably at the high end, as G1 can only resize from the top at the moment).

Tests with a prototype on a range of applications has shown that this decreases region fragmentation considerably.