8
votes

I have a web application that I wrote using a lot of different 3rd party components, a CMS and of course my code. For some reason I get out of memory exception.

Script threw an exception: Out of memory

I tried to find out what is going on. This is what I've found:

  • I ran the test with 50 threads to call 15 pages of my web-application. Memory seems fine. The IIS process is using only 400 MB of RAM

  • I've added a space in web.config and suddenly my IIS process started to grow to more than a GB in 30 minutes. Visual studio could not take snapshot of my memory since it is too big (really?!) So I've installed ANTS memory profiler but it says that my application is using only around 300 MBANTS only 300 MB

IIS process takes 1 GB [1]: https://i.stack.imgur.com/Ig8pY.png

I stopped the test after some minutes but the memory has not released.

(ANTS profiler stopped working so I've restarted it) 422MB after release IIS 1.2GB Summary 4MB of strings

It doesn't seem like the application is using 100-200MB memory specially that I am using output caching for my controllers. What I don't understand is why memory consumed by IIS is growing all the time and what is wrong

Update

My application has been restarted automatically with a crash in W3WP causing IIS to release the memory while my stress was not running for a while:

Application: w3wp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an internal error in the .NET Runtime at IP 5A3A86F1 (5A0F0000) with exit code 80131506.

and

Faulting application name: w3wp.exe, version: 10.0.15063.0, time stamp: 0xacce422f Faulting module name: clr.dll, version: 4.7.2098.0, time stamp: 0x59028d36 Exception code: 0xc0000005 Fault offset: 0x002b86f1 Faulting process id: 0x50a4 Faulting application start time: 0x01d2ee688f323893 Faulting application path: C:\WINDOWS\SysWOW64\inetsrv\w3wp.exe Faulting module path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll Report Id: 4362ddc5-f8d7-4441-8916-3830f9268b3a Faulting package full name: Faulting package-relative application ID:

enter image description here

Update 2

I ran DebugDiag and I've stress tested the site until it consumed around 3.5 GB of my RAM.

enter image description here

And Chakra is a Microsoft's library.

enter image description here enter image description here

So now I have 2 questions.

  1. Is it the ChakraCore that has leak or is it the one that is using/allocating it? How to define which library?

2- It says 27,000 allocations. Does it mean that there are still 27,000 in the memory or some of them might be allocated and then disposed?

3- It still doesn't tell me anything about the rest of 3GB of consumed RAM. it i only 600 MB in total (private+virtual).

4
Can you show us a screenshot of Script threw an exception: Out of memory? I am particularly interested if it is server-side or client-side.mjwills
@mjwills thanks for respond. It is inside javascript engine switcher, but I don't have the stack trace since reactjs.net is wrapped the exception :| JavaScriptEngineSwitcher.Core.JsRuntimeException: Out of memory. Line: 0 Column:0 at React.ReactEnvironment.Execute[T](String code)Ashkan Sirous
Use the combination of Perfmon and DebugDiag to target the IIS worker process. If you use these tools in combination then it should point you to the offending assembly. Here is a step by step tutorial of setting it up. Good luck. docs.microsoft.com/en-us/iis/troubleshoot/performance-issues/…Travis Acton
One suggestion, try PerfView to record a trace of w3wp during an app pool recycle (which is what your modifying web.config triggers). The memory usage analysis from PerfView can be very helpful in some cases. microsoft.com/en-us/download/details.aspx?id=28567stames

4 Answers

4
votes

In your analysis, I see that the .net analysis is not done correctly. Are you doing analysis in the same machine where you have captured the memory dump ?

For debugdiag to work correctly, you have to have the same version of .net framework (of the application) installed on the analyzing machine as well.

Also Please do not do native memory leak dump like this ,unless it is not figured out unmanaged leak.From the analysis of yours, it looks like this is managed leak.

When you changed the web.config file,it causes an Application domain unload and reload

Let's do step by step

  1. Using DebugDiag(capture consecutive hang dumps)
    • Launch DebugDiag Collection and Go to the Processes tab debugdiag process tab
    • Start your stress test
    • check the memory usage and once it reaches say 1 GB,capture a hang dump
      • right click on the w3wp.exe process
      • choose the option Create Full Memory dump capture full memory hang dump
    • Capture another dump at 2 GB and one at 3.5 GB
    • You should have dumps captured in the folder C:\ProgramFiles\DebugDiag\Logs\Misc\
    • Right click on the dump file and choose the option Analyse .NET Memory Issue Analyse .net memory issue

Now compare the analysis of each dump file(1 GB,2 GB, 3.5 GB), it should tell you which .NET objects are increasing and not getting garbage collected.

In the memory analysis, you should see CLR Information****,.NET GC Heap Information ,Most memory Consuming .NET Objects etc like below. This will come if your .net symbols are correctly identified by debugdiag analysis

CLR Information
 CLR version = 4.6.1648.0
 Microsoft.Diagnostics.Runtime version = 0.9.2.0
.NET GC Heap Information
Number of GC Heaps: 4 
Heap Size 0x4001ce8 (67,116,264) 
Heap Size 0x3d5cca0 (64,343,200) 
Heap Size 0x3f8b0d0 (66,629,840) 
Heap Size 0x3ccb0d0 (63,746,256) 
GC Heap Size 249.71 MBytes  
Total Commit Size  249 MB 
Total Reserved Size    17158 MB 

40 most memory consuming .NET object types

System.Char[]   193.01 MBytes    (12450 objects )
Free      45.21 MBytes    (4760 objects )
System.String      1.56 MBytes    (18072 objects ) 
==============trimmed out =======================

DebugDaig Automated analysis should give following

  1. **Errors or Warnings **- pay close attention to warning or errors displayed by debugdiag analysis on the top of the report.
  2. .NET GC Heap Information - Total Commit Size - This will roughly equal to your .net memory usage.
  3. 40 most memory consuming .NET object types -This can be used to compare against your memory increase in consecutive dumps. This will tell you which objects are causing issue.Sometimes some objects you are not using at all will be coming and might be coming from some third party library.Or you will see objects which you yourself have created
  4. Top Objects in the Finalizer queue - This will give you any clue if your finalizer may be blocked .Objects.Some similar issues are discussed here and here
  5. Objects on the Large Object Heap - This causes memory fragmentation and large object heap contaisn objects which are more than 85K in size.
  6. Size of Cache, Datatables,Application domains,Dynamic assemblies etc. It's not a good idea to have large number of application domain in one process

Please note that sometimes the debugdiag automated analysis cannot figure out the root cause and needs manual analysis using windbg. DebugDiag analysis,please refer this video.

Hope this helps!

1
votes

Since it appears you can reproduce your issue, sometimes the simplest approach is to remove things you think might be the root cause, and test again (unless you need a lot of time to see if it grows a lot or not?)

At some point the bug will stop happening, and you'll know what bit of code was responsible.

However, depending on your code base, it's not always easy to remove code and still have something that you can test (i.e. without crashing the application).

1
votes

When it comes to fixing memory leaks there are two steps.

  1. Finding where the memory leak is.
  2. Fixing the memory leak.

Normally the first step is tricky. So, I would recommend to go ahead with ANTS memory profiler and first find what exact instances are growing.

Profiling an ASP.NET application on IIS

In your question you have shown the class list result which includes even classes with system namespace. To clean up the noise, you can select "Show Only Classes with source" option.

enter image description here

Then follow the follwing steps.

  1. Take a base snapshot before you perform any operations.
  2. Perform the operations you suspect that have memory leaks.
  3. Take couple of more snapshots until you get a fairly stable snapshot.
  4. Compare the last snapshot with the base and see what instances are growing.
0
votes

You mentioned "I've added a space in web.config and suddenly my IIS process started to grow to more than a GB in 30 minutes". In which web.config tag have you appended this space. What part of your code uses it. Is that part of your code unable to handle some exception without causing memory leak. Use PerfView (Dump GC heap) to analyze the dump. This can exactly tell, the object of what kind is taking up this much of memory. In older versions of .net, it would be objects on large object heap (big arrays) or open and mis-handled db connections and files.

https://channel9.msdn.com/Series/PerfView-Tutorial/Tutorial-10-Investigating-NET-Heap-Memory-Leaks-Part1-Collecting-the-data

https://channel9.msdn.com/Series/PerfView-Tutorial/Tutorial-11-Investigating-NET-Heap-Memory-Leaks-Part2-Analyzing-the-data