ASP.Net, Out of Memory

N

Nick K.

We have ASP.Net web applications running on a Windows 200 Server using the
..Net Framework 1.0. We have been experiencing out of memory errors being
displayed on the web page after the application runs for sometimes days.

I have attempted to adjust the settings in the machine.config file setting
the <processModel> memoryLimit attribute up from the default 60 (%) to
80(%). Around this same time we upped the memory on this server to 4 Gig.

The application seemed to run for longer before getting the out-of-memory
errors, but they still happen before we have to re-boot the server.

Should this memoryLimit be bumped up even more? Are there other attributes
in the <processModel> that should be adjusted that would help? How do we go
about tracking down what is taking up all the memory?
 
M

Marina

Is it possible there are resources that are not being cleaned up properly,
and are thus not being garbage collected?
 
N

Nick K.

I am considering all possibilities. I asked if there were any unmanaged code
being called and I was told no. Garbage collecting is something .Net is
suppose to handle automatically.
 
M

Marina

That is if the objects are eligible for GC to begin with. It is possible
that you have objects that are not going out of scope for a long time.

One example of this is if you are storing large amounts of data in Session
state, and you have long session timeouts. So that data hangs around for a
long time before it is eligible for GC, and after you get a lot of users on
the system, you just run out of space.

That is one example.

Another thing to try is to use a different server. If the same problem is
there, then it is more likely that the problem is with the application. If
the other server works fine under the same load, then it would be something
specific to the first machine's configuration.
 

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

Top