Pure Danger Tech


navigation
home

A new GC for Java 7

04 Feb 2008

Jon Masamitsu wrote up a great post summarizing the current collectors in the Sun JDK and also how combinations of these young and old collectors are triggered by different JVM switches.

Jon also details a new collector (G1 for “garbage first”) that entails a single collector to divide the entire space into regions and allow a set of regions to be collected, rather than split the space into an arbitrary young and old generation. They intend to make this new collector the default in Java 7.

Some of the goal and throughput oriented thinking remind me a lot of the various real-time Java systems and the guarantees they can make around the amount of GC pause per some unit of time. Given the amount of time Java developers spend tuning and optimizing GC, better and better GC is something we can all use. Of course, the GC demands of any set of systems vary widely so it’s a fine art to build a system that balances those needs.

Originally posted on the Java Zone.