Can anyone help me make sense of this graph from V...
# community-support
н
Can anyone help me make sense of this graph from VisualVm? How used heap can exceed heap size? Context: • I’m running several Android related tasks sequentially. • Gradle: 8.13
Copy code
org.gradle.jvmargs=-Xmx4G -Xms2G -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g
😕 1
👀 1
So far discovered that limiting max workers to 2 seems like removes this spikes
j
This is probably a measurement artifact. With the G1 GC the heap is separated in three different pools; when objects are moved from one pool to another you may see these spikes.
til 1
BTW the good old
jconsole
can be used to get a more detailed view of what's going on within each pool.
🙏 1