473,404 Members | 2,137 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

aspnet_wp.exe (100%) cpu leak

Luk
Hi,
we have got a problem with asp.net and we don't know what to do

Usually aspnet_wp.exe under medium/high load uses a maximum of 40% cpu
power.
Suddently even when requests are not so high it starts using 100% cpu.
Pages are so served in many seconds each (instead of few cents),
process threads and memory grows for all user new requests due to the
low speed or complete non working site. However we have not memory
problems (there is always enough free mem).
We can't understand what is using cpu and how to solve this problem.

It remains in this state for many minutes (sometimes hours...) if we
don't kill aspnet_wp.exe before. Even after process restarts aspnet
compile aspx files and in this moment the cpu is normally high for few
seconds.Then the cpu is on normal values also with many requests.
This problem returns sometimes after hours, often after few minutes.

In machine.config:

<processModel
enable="true"
timeout="Infinite"
idleTimeout="Infinite"
shutdownTimeout="0:00:05"
requestLimit="Infinite"
requestQueueLimit="600"
restartQueueLimit="10"
memoryLimit="60"
webGarden="false"
cpuMask="0xffffffff"
userName="machine"
password="AutoGenerate"
logLevel="Errors"
clientConnectedCheck="0:00:05"
comAuthenticationLevel="Connect"
comImpersonationLevel="Impersonate"
responseDeadlockInterval="00:03:00"
maxWorkerThreads="20"
maxIoThreads="20"
/>

But we tried many configuration here with no useful results:
maxWorkerThreads and maxIoThreads from 13 to 100, and
requestQueueLimit from 300 to 5000. aspnet_wp.exe goes to 100% when it
wants and goes down only after several minutes (this could be more

We monitored some info in performance counters but didn't find
anything useful.

We don't use monitors, software lock, or critical section in the code.
We store a lot of data at application level (using global.asax), and
some in session state (with cookie, inProc).
All exception we can handle are saved, and there is nothing strange.

Help us please... Thanks

Server is:
- dual Xeon 2.8 GHz (with HT active), 2GB RAM,
- Win2k server SP3 (and other patchs...) + IIS 5
- .NET Framework v1.1.4322
- isapi filter used : flatcompression (www.flatcompression.org) and
urlscan
- MySQL driver used: MyOdbc-3.51.06 and MySQLDriverCS-3.0.13
Nov 18 '05 #1
3 4774
have you changed or updated the running code recently? to fix a bug or
something? I'm thinking this is buggy code introduced into the system

what do your application event logs say?

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Luk" <lu**@libero.it> wrote in message
news:51**************************@posting.google.c om...
Hi,
we have got a problem with asp.net and we don't know what to do

Usually aspnet_wp.exe under medium/high load uses a maximum of 40% cpu
power.
Suddently even when requests are not so high it starts using 100% cpu.
Pages are so served in many seconds each (instead of few cents),
process threads and memory grows for all user new requests due to the
low speed or complete non working site. However we have not memory
problems (there is always enough free mem).
We can't understand what is using cpu and how to solve this problem.

It remains in this state for many minutes (sometimes hours...) if we
don't kill aspnet_wp.exe before. Even after process restarts aspnet
compile aspx files and in this moment the cpu is normally high for few
seconds.Then the cpu is on normal values also with many requests.
This problem returns sometimes after hours, often after few minutes.

In machine.config:

<processModel
enable="true"
timeout="Infinite"
idleTimeout="Infinite"
shutdownTimeout="0:00:05"
requestLimit="Infinite"
requestQueueLimit="600"
restartQueueLimit="10"
memoryLimit="60"
webGarden="false"
cpuMask="0xffffffff"
userName="machine"
password="AutoGenerate"
logLevel="Errors"
clientConnectedCheck="0:00:05"
comAuthenticationLevel="Connect"
comImpersonationLevel="Impersonate"
responseDeadlockInterval="00:03:00"
maxWorkerThreads="20"
maxIoThreads="20"
/>

But we tried many configuration here with no useful results:
maxWorkerThreads and maxIoThreads from 13 to 100, and
requestQueueLimit from 300 to 5000. aspnet_wp.exe goes to 100% when it
wants and goes down only after several minutes (this could be more

We monitored some info in performance counters but didn't find
anything useful.

We don't use monitors, software lock, or critical section in the code.
We store a lot of data at application level (using global.asax), and
some in session state (with cookie, inProc).
All exception we can handle are saved, and there is nothing strange.

Help us please... Thanks

Server is:
- dual Xeon 2.8 GHz (with HT active), 2GB RAM,
- Win2k server SP3 (and other patchs...) + IIS 5
- .NET Framework v1.1.4322
- isapi filter used : flatcompression (www.flatcompression.org) and
urlscan
- MySQL driver used: MyOdbc-3.51.06 and MySQLDriverCS-3.0.13

Nov 18 '05 #2
Thank you for your reply

I have always had this problem. But once it happened 1 time a week. Now
it's much more frequent, and in the last weeks even several times a
day...

There's nothing on the application event log, process don't recycle on
his own (i have to kill it, or wait a lot...)

Code changes frequently for new services or improvements. I tried to
isolate and modify some features that could have been heavy to manage
(that used monitor to access to a global resource, now with an external
mysql heap table).
I still store a lot of data in global objects (some hashtables taking
about 700 mb on high load), but i dont think this is a problem.

What could i monitor in performance counter to understand what is using
cpu?
I noticed that both GC counters and exceptions/s reports same values in
both cpu situations.
I dont know if it's a code loop or a performance issue connected to a
bug, or something else...

thanks
Re: aspnet_wp.exe (100%) cpu leak
From: Alvin Bruney [MVP] have you changed or updated the running code recently? to
fix a bug or
something? I'm thinking this is buggy code introduced into
the system what do your application event logs say?


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #3
Are you pumped? Roll up your sleeves because this will make you sweat, more
like cry out for mamma. (it's a lot of work basically)

start here
http://www.microsoft.com/technet/pro...t/tshicpu.mspx

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"F. L." <lu**@libero.it> wrote in message
news:Ou*************@TK2MSFTNGP09.phx.gbl...
Thank you for your reply

I have always had this problem. But once it happened 1 time a week. Now
it's much more frequent, and in the last weeks even several times a
day...

There's nothing on the application event log, process don't recycle on
his own (i have to kill it, or wait a lot...)

Code changes frequently for new services or improvements. I tried to
isolate and modify some features that could have been heavy to manage
(that used monitor to access to a global resource, now with an external
mysql heap table).
I still store a lot of data in global objects (some hashtables taking
about 700 mb on high load), but i dont think this is a problem.

What could i monitor in performance counter to understand what is using
cpu?
I noticed that both GC counters and exceptions/s reports same values in
both cpu situations.
I dont know if it's a code loop or a performance issue connected to a
bug, or something else...

thanks
Re: aspnet_wp.exe (100%) cpu leak
From: Alvin Bruney [MVP]

have you changed or updated the running code recently? to
fix a bug or
something? I'm thinking this is buggy code introduced into
the system

what do your application event logs say?


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Wendy S | last post by:
We've been provided a Java app to use for a homework assignment on databases. It's my own fault for writing inefficient queries, but it keeps taking 100% of my CPU and it takes several minutes to...
5
by: Ken Barrett | last post by:
I apologize in advance for cross-posting, but I have noted that others have experienced similar issues and was hoping that someone could help. Briefly, I am working on an ASP.NET content...
1
by: caulker | last post by:
i have an asp.net that seems to be leaking memory somewhere. in an attempt to find it, i create a blank test.aspx page with one label on it, and made this the default page for the site. every time...
1
by: Richie | last post by:
Folks, We have an intermittent error in our asp.net application which is driving us all crazy. In our app, we need to view the reports frequently. Now once every week, what happens is when we...
2
by: RaptorsFan | last post by:
aspnet_wp process accumulates memory usage up to the point when it's more than 60% of available RAM (2G) and none of .NET applications function. Sometimes user is able to login, navigate between...
2
by: Sidharth | last post by:
Hello, We are experiencing some issues with the aspnet_wp process on our live servers. The problems are intermittent and we cannot reproduce it on our dev and test servers. Currently around...
2
by: Marcin Belczewski | last post by:
I have a problem with aspnet_wp.exe on my Windows XP. When I start any of my web applications, webservices or even try to create asp.net project under vs.net - aspnet_wp.exe process starts -...
2
by: Rishan | last post by:
Hi, I'm trying to debug a memory leak on a production application for one of my clients. The aspnet_wp.exe, if left to grow, will eventually consume enough memory to throw an out of memory...
2
by: ruca | last post by:
Hi gurus, Can anyone tell me please when I really must setup the value of memory that aspnet_wp or w3wp must use in IIS server machine? What I mean is that we have clients that have diferent...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.