heap-profiling Questions
2
I'm trying to profile an application written in go which apparently uses about 256 virtual memory (checked using ps aux). I'm trying to use pprof package and see what functions allocate/consume mos...
Minaret asked 18/8, 2015 at 16:42
1
I have a Go service that I'm running in Kubernetes (AWS EKS). I'm observing that the RES memory grows to the max resources.limits.memory of 365Mi and gets OOMKilled by Kubernetes. The RES memory gr...
Paracasein asked 8/2, 2024 at 1:21
1
I'm using async Socket to make connections between client and server using MSDN Docs:
https://msdn.microsoft.com/en-us/library/fx6588te(v=vs.100).aspx
https://msdn.microsoft.com/en-us/library/bew...
Glissando asked 29/1, 2018 at 21:44
1
Solved
I have been trying to profile the heap usage of a cli tool built with cobra.
The pprof tool is showing like the following,
Flat Flat% Sum% Cum Cum% Name Inlined?
1.58GB 49.98% 49.98% 1.58GB 49.98% ...
Kreegar asked 7/9, 2022 at 9:3
0
When producing a type heap profile (-hy) from a Haskell program, I get these results:
ReaderT
->ReadertT
->>*
(,)
->(#,#)
What is the meaning of the '->' prefix (with one or more '&...
Adagietto asked 14/6, 2021 at 21:12
2
I am trying to use pprof to verify memory leaks.
Can any explain how to read the heap profile that you find at:
http://localhost:6060/debug/pprof/heap?debug=1
Also, is it normal that by typing th...
Griffis asked 29/9, 2013 at 17:1
0
When I profile my program's heap usage with -hy flag (for type descriptions) like
./prog +RTS -hy
I often see ->a, ->>a, ->>>a in the results (where a is either another type or...
Jordans asked 28/8, 2019 at 9:34
7
I have a table "class" which is linked to tables "student" and "teachers".
A "class" is linked to multiple students and teachers via foriegn key relationship.
When I use hibernate associations an...
Amylolysis asked 10/2, 2016 at 19:13
1
Solved
When I profile the heap in go with pprof I get the following:
However, I'm not clear on how to interpret that visualization. In particular:
"The memory next to the arrows means _____ and the me...
Perspiration asked 8/3, 2016 at 15:26
1
Solved
Trying to get my head around the heap profiler in Chrome Developer Tools. I see several reachable objects in the snapshot, some of them have yellow background and some not. What does it mean? What'...
Grantham asked 13/3, 2013 at 19:4
1
© 2022 - 2025 — McMap. All rights reserved.