Application Pool 'AppPoolName' exceeded its job limit settings

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

I have a Asp.Net 1.1 application of which I have a very large datagrid
on one of my pages. I am populating the datagrid by loading a xml file
that is being stored in viewstate. After I have the datagrid loaded
and displayed on the page I want to do certain actions on the datagrid,
ex. move rows up or down in the datagrid. When I do this with a large
dataset my application hangs and eventually comes up with the message
"Service Unavailable". When I check the event log on the server I see
the message
"Application pool 'AppPoolName' exceeded its job limit settings. "
Source W3SVC
Category: None
Event ID: 1025

I was wondering if there is a fix or a more specific cause for this
issue because my page works correctly with smaller datasets. Thank you.
 
app pool have constraints specified in machine.config. max number of
threads, max memory, max running time,etc. you are one of these max's which
forces a recycle.

check you page size, you should reengineer if viewstate is over 2k.

-- bruce (sqlwork.com)
 
Thanks for the advice. The setting is what I needed to change. I know
that I need to reengineer my page, but I needed a quick fix until the
redesign is complete. Thank you
 

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

Back
Top