Relation between memory usage by top and by memray -- where is the gap? #719
Replies: 2 comments 1 reply
-
If you haven't already read https://bloomberg.github.io/memray/memory.html you should start there. The graph you're showing has two lines on it. The blue line is RSS, and should match up with the RES column in The orange line is the one that Memray really proactively tracks. That line is showing the heap memory usage of the program: the amount of memory allocated by calls to As for why you see VIRT increasing by 200 MB, that could be any number of things. It could be that you loaded a large shared library, and the VIRT increase is the address space of that shared library. It could be that you spawned a large number of threads, and the VIRT increase is the stack for each of those new threads. Without a reproducer, it's very hard to know why VIRT has increased, but what we can know for sure is that it wasn't caused by calls to a one of the |
Beta Was this translation helpful? Give feedback.
-
Thanks @godlygeek for all the info! I'll focus in the heap memory then for chasing a memory leak, if any. Question, do you know how can I find out regarding VIRT memory? you say that is very hard without a "reproducer", what is that? Maybe you can recommend me a tool, or any indication is welcomed, thanks! |
Beta Was this translation helpful? Give feedback.
-
Hello!
l;dr: I have a memory leak, I see memory increase in real life, I can measure with
top
, but I'm failing to understand whatmemray
is showing for it.Context:
I'm trying to find a leak in a Flask app running under gunicorn. For this purpose, I'm running gunicorn it in
sync
mode with one worker (so when I trigger the memory leak I know which process handled it).I'm also running gunicorn under memray:
All this in a docker container.
How I measure it in the container:
With
top
:See information after server is up and in regimen:
So I hit once the endpoint that triggers the memory leak, and after the work
top
shows:Focus on process with id
100
. See how all memory indications went up. Particularly,VIRT
raised ~200 MB!Memray:
So then I grab the memray outputs, and create a flamegraph:
When I see it the step us is there:
However, the amount is weird. It goes up from 192.1MB to 196.8MB.
It seems to correspond to the increment in what
top
shows asRES
(resident memory, makes sense!). However the absolute amounts are totally different.Beyond that, what about
VIRT
? How can I find that 200MB gap?All help/information is welcomed. Thanks in advance!
. Facundo
Beta Was this translation helpful? Give feedback.
All reactions