JDK-8229049 : JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector
  • Type: JEP
  • Component: hotspot
  • Sub-Component: gc
  • Priority: P2
  • Status: Closed
  • Resolution: Delivered
  • Fix Versions: 14
  • Submitted: 2019-08-03
  • Updated: 2020-06-18
  • Resolved: 2020-02-27
Related Reports
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Relates :  
Sub Tasks
JDK-8233390 :  
Description
Summary
-------

Remove the Concurrent Mark Sweep (CMS) garbage collector.

Non-Goals
---------

* It is not a goal to remove any other garbage collector.
* It is not a goal to remove the CMS garbage collector from releases prior to the release to which this JEP is targeted.

Motivation
----------

More than two years ago in, [JEP 291](https://openjdk.java.net/jeps/291), we deprecated the CMS collector for removal in a future release, in order to accelerate the development of other collectors. During this time, no credible contributors stepped up to take on the maintenance of CMS.

During this time we���ve also seen the introduction of two new collectors, ZGC and Shenandoah, along with further improvements to G1, which has been the intended successor to CMS since JDK 6. At this point the garbage collectors available in the Hotspot JVM, if they do not surpass CMS���s performance, have a small enough overhead that it is now safe to remove CMS. We expect that future improvements to the existing collectors will reduce the need for CMS even further.

Description
-----------

This change will disable compilation of CMS, remove the contents of the `gc/cms` directory in the source tree, and remove options that pertain solely to CMS. References to CMS in the documentation will also be purged. Tests that try to use CMS will be removed or adapted as necessary.

Trying to use CMS via the `-XX:+UseConcMarkSweepGC` option will result in the following warning message:

    Java HotSpot(TM) 64-Bit Server VM warning: Ignoring option UseConcMarkSweepGC; \
    support was removed in <version>

and the VM will continue execution using the default collector.

Alternatives
------------

The code for CMS could be kept in the repository but not compiled. Without a maintainer, however, the code would become obsolete quickly yet might give a false impression of being supported.

Users can move to the G1 garbage collector or any of the other collectors. Users that absolutely require CMS may still use it for as long as it remains supported in earlier releases.

Comments
Fine with me
03-10-2019