vote up 1 vote down star

I have an ASP.Net 3.5 website running in IIS 6 on Windows Server 2003 R2. It is a relatively small internal application that probably serves less than ten users at any given time. The server has 4 Gig of memory and shows that 3+ Gig is available while the site is active.

Just minutes after restarting the web application Performance monitor shows that there is a whopping 4,294,967,293 sessions active! I am fairly certain that this number is incorrect; at the time this reading there were only 100 requests to the website.

Has anyone else experienced this kind odd behavior from perf mon? Any ideas on how to get an accurate reading?

UPDATE: After running for about an hour the number of active sessions has dropped by 4. So it does seem to be responding to sessions timing out.

flag

5 Answers

vote up 7 vote down check

Could be an overflow, but my money's on an underflow. I think that the program started with 0 people, someone logged off, and then the number of sessions went negative.

link|flag
that's what i meant... a reverse overflow. :-) – siz Dec 19 '08 at 18:21
This sounds plausable, however I am having trouble replicating that scenario on my test server. – TGnat Dec 19 '08 at 18:48
vote up 0 vote down

My counters were working fine, but one morning I logged in remotely to the production server, and the counter was on this huge number (which is as somebody mentioned very close to 2^32 indicating an underflow). But the only difference from the day before when everything worked was the fact that during the night, windows had installed updates. So for some reason these updates caused this pretty annoying error.

Observing the counter a little more, I found out that whenever the application is restarted - after some time with no traffic, the counter starts correctly at zero. When users start logging on, it increments fine. When they start logging off again, it still decrements fine until it reaches what is supposed to be zero. At that point it goes bananas...

Sigh...

link|flag
Was one of those updates ASP.NET 3.5 SP1? in which case as Dean points out, there's a hotfix for this issue: support.microsoft.com/kb/969722 – Zhaph - Ben Duguid Sep 1 at 13:44
vote up 5 vote down

We have the same problem. It looks like MS has a Hotfix available: http://support.microsoft.com/kb/969722

Update 9/10/2009: Our IT department contacted MS for the Hotfix. It fixed our issue. We are running .NET 2.0 if it matters any.

link|flag
vote up 0 vote down

I am also showing a high number, currently 4,294,967,268.

Every time I abandon a Session, the Sessions abandoned count goes up by 1, and the Sessions Active count decreases by 1. Currently my abandoned session count = 16, so this number probably started at 4,294,967,84.

Is there a fix for this?

link|flag
Did you see Dean's link to a possible Hotfix for this? support.microsoft.com/kb/969722 – Zhaph - Ben Duguid Sep 1 at 13:45
vote up 7 vote down

Well, 2^32 = 4,294,967,296, so sounds like there's some kind of overflow occurring. Can't say exactly why.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.