Click here to Skip to main content
15,881,757 members
Articles / Web Development / ASP.NET

How to Troubleshoot ASP.NET Application Hang with Memory Dump

Rate me:
Please Sign up or sign in to vote.
4.67/5 (4 votes)
15 May 2012CPOL6 min read 58K   21   6
In this article, I will show how to troubleshoot an ASP.NET application hang with memory dump

Introduction

A production IIS server has been reported to hang once a day. We tried every possible way to find a remedy for the situation with no luck. Fortunately, from memory dump, we found some clues that eventually pinpoint the source of the problem. In here, I will put all the information and experience I got from the process of capturing and analyzing memory dump.

The Environment

This is an ASP.NET 2.0 based web application that is running in Windows 2008 server and use SQL Server 2008 as database. The web application is dealing with documents heavily. All documents are stored in a dedicated document server. All the servers are VMWare based virtual server.

The Problem

In the last several months, our client started to experience server hang occasionally. When the server hangs, nobody can use the web application and system administrator can’t even remote into the server. In the beginning, we checked server configuration, software installed, processes are running, application source code, event viewer, IIS log, etc. to try to find some clue. Unfortunately, there is nothing unusual. So, we start to focus on finding a way to gather more information when IIS hang is happening. The idea is to capture IIS memory dump during server hang and use memory dump tool to understand what’s happening at that moment.

Tools

In order to get memory dump while server hang is happening, we need the following tools.

Windows Debugging Tool

Windows debugging tool can be obtained from Microsoft’s Download and Install Debugging for Windows page (http://msdn.microsoft.com/en-us/windows/hardware/gg463009). The Windows Software Development Kit (SDK) for Windows 8 Consumer Preview is the one that contains the latest windows debugging tool.

After installed Windows Software Development Kit for Windows 8 Consumer Preview, you will have a Windows Kits folder in C:\Program Files (or C:\Program Files (x86) in 64 bit Windows). Don’t confuse this with Windows SDK folder that could already exist in your C:\Program Files (or C:\Program Files (x86) in 64 bit Windows). There are many tools in Windows Kits. What we are going to use are:

  1. cdb.exe
    A user-mode debugger with a console interface. This will be used later in memory dump capturing script.
  2. windbg.exe
    A user-mode and kernel-mode debugger with a graphical interface. This will be used to analyze captured memory dump.

Debug Diagnostic Tool v1.2

The Debug Diagnostic Tool (DebugDiag) is designed to assist in troubleshooting issues such as hangs, slow performance, memory leaks or memory fragmentation, and crashes in any user-mode process. This tool includes additional debugging scripts focused on Internet Information Services (IIS) applications, web data access components, COM+ and COM+ related Microsoft technologies, SharePoint, and .NET Framework. What we really needed from Debug Diagnostic Tool is those debugging extensions for windbg.

How to Setup Sever Hang Memory Dump Capturing

Our client’s server is Windows Server 2008 that has IIS 7 come with it. Following the below steps can setup a trigger for generating memory dump when IIS hangs.

1. Create a GenerateDump.bat Batch File

The batch file contains the following script:

@if "%_echo%"=="" echo off
setlocal
    set TIMESTAMP=%DATE:~-9%_%TIME%
set TIMESTAMP=%TIMESTAMP:/=_%
set TIMESTAMP=%TIMESTAMP::=_%
set TIMESTAMP=%TIMESTAMP:.=_%
set TIMESTAMP=%TIMESTAMP: =_%
set FILENAME=c:\crash_PID_%1_%TIMESTAMP%.dmp
set LOG=c:\log.txt
set COMMAND= C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\cdb.exe 
             -c ".dump /o /ma %FILENAME%;q" -p %1

echo %COMMAND% > %LOG%
%COMMAND%

endlocal

2. Configure the Orphan Worker Process Settings

  1. In command window, go to adminscripts folder of inetpub:
    cd c:\inetpub\adminscripts
  2. To enable the orphan worker process feature, type the following command at the command prompt:
    adutil.vbs SET W3SVC/AppPools/DefaultAppPool/OrphanWorkerProcess TRUE
  3. At the command prompt, set the batch script in step 1 to run when a process is scheduled to be recycled.
    adsutil.vbs SET W3SVC/AppPools/DefaultAppPool/OrphanActionExe "c:\GenerateDump.bat"
    
    adsutil.vbs SET W3SVC/AppPools/DefaultAppPool/OrphanActionParams "%1%"

    Note: Make sure that the OrphanActionExe option points to the location of the batch file that was created above and make sure the account of w3wp.exe process has Read and Execute permissions to that file.

How to Analyze Memory Dump

After a dump file is captured during IIS hang, we use windbg to open up the dump file.

Load Memory Dump into windbg

  1. Open up windbg:

    Image 1

    There are x86 version windbg and x64 version windbg. Which one to run does not depend on your development machine’s Windows version, it depends on your memory dump machine’s Windows version. Based on the version of windbg you run, you need to load corresponding debugging extensions in the following steps.

  2. Go to File -> Open Crash Dump. Choose the dump file captured by your IIS server.

    Image 2

  3. Run command:
    !symfix

    This command will automatically set the symbol path to Microsoft’s symbol store. By doing this, you must have Internet connection available. Alternatively, you can download symbols to your local in advance or just directly point to Microsoft’s symbol server with syntax like this:

    srv*c:\symbols*http://msdl.microsoft.com/download/symbols

    Image 3

Load Additional Debugging Extensions

The built-in command of windbg provides limited analysis functionality for managed memory dump, so you need some debugging extensions to help reveal more information inside managed memory dump.

  1. Run command:
    !load psscor2

    Psscor2 is a part of Debug Diagnostic Tool. It is a managed debugging extension of windbg. It’s designed to debug ASP.NET 2.0 and 3.5 memory dump. You can also load Psscor4 into windbg if want to debug ASP.NET 4.0 application memory dump. Psscor2 is a superset of debugging extension sos. By loading this debugging extension into windbg, we don’t need sos debugging extension anymore.
    If you load psscor2 failed because can’t find correct version mscordacwks, then you can use...

    .cordll –ve –u –I mscorwks –l 

    ...to load the correct one. The cordll command will try to find the correct mscorwks from several different locations and tells you whether those attempting success or not.

    Image 4

  2. Run command:
    !load IISInfo

    IISInfo debugging extension is also a part of Debug Diagnostic Tool. It’s used to show IIS and ASP information in memory dump:

    Image 5

Analyze Memory Dump with Debugging Commands

  1. Run command:
    .time

    This is a windbg built-in command. It’s used to display system up time, process up time, kernel time, and user time.

    Image 6

  2. Run command:
    !aspxpages

    This is a command from psscor2 debugging extension. It is used to list which ASP.NET pages are being processed in which threads.

    Image 7

  3. Run command:
    !Threads 

    It is a command from psscor2 debugging extension. It is used to list all running threads in memory dump.

    Image 8

  4. Run command:
    ~[Thread Id]s

    It is a command from psscor2 debugging extension. It is used to select specific thread.

    Image 9

  5. Run command:
    !CLRStack –p

    It’s a command from psscor2 debugging extension. It is used to show the current selected thread’s CLR stack trace with parameter information:

    Image 10

  6. Run command:
    !do [memory address]

    It’s a command from psscor2 debugging extension. It is used to reveal content in specified memory address.

    Image 11

  7. Run command:
    !dae

    This is a command from psscor2 debugging extension. It is used to dump all .NET exceptions found in your memory dump.

    Image 12

  8. Run command:
    !threadpool

    It’s a command from psscor2 debugging extension. It is used to find out exactly what the CPU usage was at the time the dump was taken. We’ll also get some useful information like the number of work requests in the queue, completion port threads and timers.

    Image 13

  9. Run command:
    !clientconns

    It’s a command from IISInfo debugging extension. It’s used to see all client connections.

    Image 14

The Finding

From memory dump, we found long running process is trying to get document from client’s document server, however, because document server doesn’t response promptly to the request, ASP.NET process just hang in there waiting and waiting. This kind of document request keeps coming in, so finally, all hang document requests process brought down the IIS server.

Summary

Windows Debugging Tool is a very useful tool in dealing with complicated application problem in Windows. For my case, IIS hang is a bizarre problem to us as an application developer. With memory dump and memory dump analysis tool, we can gather more information and pinpoint the problem.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Senior Software Developer from New Jersey, USA

Have 15+ years experience on enterprise application development with various technologies.

Comments and Discussions

 
QuestionWebpage Gets Hanged Pin
Member 288205819-Mar-15 0:50
Member 288205819-Mar-15 0:50 
QuestionSolution Pin
MamathaPachikanti19-Oct-14 13:45
MamathaPachikanti19-Oct-14 13:45 
AnswerRe: Solution Pin
Henry He20-Oct-14 18:26
Henry He20-Oct-14 18:26 
Thank you for reading my article. We found the problem, but have no way to fix it, because it's something from OS or API level. We contacted Microsoft and got some patches to have it fixed.
QuestionDebugging hung websites on ASP.NET/IIS Pin
mvolo11-Oct-13 16:17
mvolo11-Oct-13 16:17 
GeneralMy vote of 1 Pin
eddy morrison22-May-12 2:12
eddy morrison22-May-12 2:12 
GeneralRe: My vote of 1 Pin
Florian Rosmann17-Nov-13 3:27
Florian Rosmann17-Nov-13 3:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.