我正在使用带有进程转储的WinDbg对高内存压力.net应用程序进行事后分析,并且此进程是Windows服务。
我有一种感觉,这 14GB 的进程内存消耗大部分来自中止的线程,因此有很多孤立信号灯/事件/突变体等。但是我无法将所有这些放在一起并将它们相加,例如单个信号量/事件/突变体需要多少内存,以及哪种 WinDbg 命令对这种情况有帮助?
以下是 WinDbg 输出:
!处理
**Type Count**
None 90
Event 5550
Section 41
File 1166
Directory 3
Mutant 160
Semaphore 4581
Key 78
Token 2
Thread 553
IoCompletion 6
Timer 1
TpWorkerFactory 3
ALPC Port 9
WaitCompletionPacket 33
!地址 -摘要
--- Usage Summary ---------------- RgnCount ----------- Total Size -------- %ofBusy %ofTotal
<unknown> 471 3`86ea2000 ( 14.108 Gb) 92.40% 0.01%
!threads(列出的许多线程都有 ThreadAbortException 异常)
Lock
ID OSID ThreadOBJ State GC Mode GC Alloc Context Domain Count Apt Exception
12 3 33f0 00000017e3c23200 1282b221 Preemptive 0000000000000000:0000000000000000 00000017e3bb3930 1 MTA System.Threading.ThreadAbortException 000000181de5d668
柄及其包装器可能非常小。使用dt -r
了解它们的大小:
0:025> dt -r ntdll!_KSEMAPHORE
+0x000 Header : _DISPATCHER_HEADER
+0x000 Type : UChar
+0x001 TimerControlFlags : UChar
+0x001 Absolute : Pos 0, 1 Bit
+0x001 Coalescable : Pos 1, 1 Bit
+0x001 KeepShifting : Pos 2, 1 Bit
+0x001 EncodedTolerableDelay : Pos 3, 5 Bits
+0x001 Abandoned : UChar
+0x001 Signalling : UChar
+0x002 ThreadControlFlags : UChar
+0x002 CpuThrottled : Pos 0, 1 Bit
+0x002 CycleProfiling : Pos 1, 1 Bit
+0x002 CounterProfiling : Pos 2, 1 Bit
+0x002 Reserved : Pos 3, 5 Bits
+0x002 Hand : UChar
+0x002 Size : UChar
+0x003 TimerMiscFlags : UChar
+0x003 Index : Pos 0, 6 Bits
+0x003 Inserted : Pos 6, 1 Bit
+0x003 Expired : Pos 7, 1 Bit
+0x003 DebugActive : UChar
+0x003 ActiveDR7 : Pos 0, 1 Bit
+0x003 Instrumented : Pos 1, 1 Bit
+0x003 Reserved2 : Pos 2, 4 Bits
+0x003 UmsScheduled : Pos 6, 1 Bit
+0x003 UmsPrimary : Pos 7, 1 Bit
+0x003 DpcActive : UChar
+0x000 Lock : Int4B
+0x004 SignalState : Int4B
+0x008 WaitListHead : _LIST_ENTRY
+0x000 Flink : Ptr64 _LIST_ENTRY
+0x008 Blink : Ptr64 _LIST_ENTRY
+0x018 Limit : Int4B
因此,信号量的大小为 0x18+4 字节。请注意,如果使用Ptr
部件,例如,如果您的等待名单非常大,则尺寸可能会增加。
我建议您!dumpheap -stat
您的情况。这将输出 .NET 对象的列表,按其总大小排序。
通常有byte[]
、object[]
(或类似)和String
消耗最多的记忆。
0:025> !dumpheap -mt 000007feef0aea80
Address MT Size
[...]
000007feef0bda88 4915 329862 System.String
000007feef0be100 1419 382288 System.Object[]
000007feef05f748 2 786520 System.UInt32[]
Total 65575 objects
对于单个对象,可以使用!objsize <address>
。在我的示例中,System.Threading.Thread
有 16 kB。因此,即使您有 1000 个线程,这也只能弥补 16 MB 的内存。在我的应用程序中,System.Threading.ManualResetEvent
的示例仅占 80 个字节。
0:025> !objsize 0000000011878358
sizeof(0000000011878358) = 16736 (0x4160) bytes (System.Threading.Thread)
0:025> !objsize 00000000118af810
sizeof(00000000118af810) = 80 (0x50) bytes (System.Threading.ManualResetEvent)