Releasing unused memory

Aleksey Shipilev shade at redhat.com
Thu Oct 18 08:30:45 UTC 2018


On 10/18/2018 09:59 AM, Per Liden wrote:
> For example, when this is enabled, we probably also want this to affect ZGC's heap grow
> heuristics so that we not only return memory we don't need but also so that we're more
> conservative about growing the heap in the first place. Also, the current patch returns memory
> very aggressively. To reduce the impact on performance, we might want to only release memory that
> have gone unused for some amount of time.
I assume "being more conservative about growing the heap in first place" basically means triggering
the GC more often, and not actually stalling allocations when the current ephemeral limit is reached
(that would be a questionable choice, IMO)?

Sharing some adoption experience below:

Shenandoah used to have the separate heuristics code that decided when to grow the heap vs
triggering the GC, but we eventually considered that is one feedback loop too many, which runs in
peculiar corner cases on real workloads. So, as soon as we got timed uncommit integrated, we have
started to piggyback on that for "heap sizing": initialize all the heap (metadata) at once, but
commit only the regions we currently need, uncommit unused regions after some time.

This ties up heap sizing to actual use automatically, does not run into feedback potholes, and
exposes sensible tuning options (i.e. timed uncommit delay that users can relate to their
deployments). On the down side, this might make heap grow up to -Xmx until driver code reacts with
GC request.

We thought that would be a concern, but it seems adopters come with combination of these three
desires: a) fine with whatever active footprint, as long as throughput holds; b) fine with whatever
throughput hits, as long as footprint is minimal; c) care very much about idle footprint. It seems a
waste of time trying to come up with a heuristics that tries to have medium throughput with medium
footprint. Instead, it seems more prudent to handle idle footprint issues first, and then provide
canned profiles for either throughput- or footprint-extremes, with some tunable options that can
balance these, if users are happy to tune up for their specific workloads.

-Aleksey



More information about the zgc-dev mailing list