JDK-8293616 : Concurrent refinement by mutators only processes one buffer
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 20
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • Submitted: 2022-09-10
  • Updated: 2024-10-11
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.
Other
tbdUnresolved
Related Reports
Relates :  
Description
Mutator threads may be used to perform concurrent refinement (because there aren't enough refinement threads to do the job).  When that mode is active, when a mutator thread fills a buffer and adds it to the queue, it then takes a buffer from the queue and processes it.  This keeps the queue size from increasing, but may not be sufficient.  In particular, if configured to not have any dedicated refinement threads, this won't reduce the number of pending cards.  Mutator threads should, under some circumstances, process multiple buffers per buffer added.