jvm - Does RSS tracks reserved or commited memory? -


i'm running experiments different jvm options on java 8 in order lower rss:

output (partial thread area):

-                    thread (reserved=130696kb -21564kb, committed=130696kb -21564kb)                             (thread #121 -21)                             (stack: reserved=130048kb -21504kb, committed=130048kb -21504kb)                             (malloc=379kb -67kb #610 -105)                             (arena=268kb +7 #240 -42) 

question: memory taken account rss output above, committed or reserved?

the relation between reserved/committed , resident/virtual little more complex. rss covers pages resident in physical memory. things have been paged out (or never paged in) can be committed memory not resident.

maybe answers question: reserved-but-not-committed pages cannot resident.


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -