Dot net application ends in a Deadlocked State

J

Jim

This is the error I am getting on my web server. I recently installed SP4
for Win2000 and updated the asp.Net to 1.1.4322.0

I attempted to get the appropriate patch from KB 821156, It is interesting
that Microsoft advises to download a patch on a page that does not exist. I
also spent most of the day listening to the recording from MS stating that
they were too busy to help.

aspnet_wp.exe (PID: 1684) was recycled because it was suspected to be in a
deadlocked state. It did not send any responses for pending requests in the
last 180 seconds. This timeout may be adjusted using the <processModel
responseDeadlockInterval> setting in machine.config.
 
A

alien2_51

This happens when the web server recieves a request and and doesn't issue a
response within the time specified in responseDeadlockInterval...
I've had to adjust this setting in our reporting environment to accomodate
long running sql queries... This is probably one of the best reasons to
seperate reporting from transaction processing... If you are not running IIS
6 exceeding this timeout will recycle the aspnet process and all appDomains
on the IIS server will be reset, so if you have stored anything in the
session it will be gone... If you are running sql queries on thing to do
would be to set your command timeout to something less than the
responseDeadlockInterval, this will give you a timeout rather than an IIS
reset.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top