Reboot IIS 7.0 Each Time

I have an application pool that is processed exactly every minute. Private memory is set at 1,433,600 KB. Virtual memory is set to 2457600 KB (yes, there are many). The regular recycle interval remains the default by default of 1740. From what I see, the memory limit does not come close when recycle occurs. I can not find anything on the server that can cause this.

Does anyone have any ideas as to what might be causing this?

+5
source share
3 answers

We had the same problem. You don’t know if this solution is for you, but we turned off the virtual memory utilization setting (keep the private memory turned on), and the pool application stops processing.

Bookmark this article an article about reserving large memory .

+3
source

Make sure that recycling logging is enabled for all possible values ​​(right-click the application pool, select Recycle, then click Next to view the log).

Then, when it is processed, you should receive a "WAS" event in the system event viewer, which tells you specifically why it is processed.

+1
source

We had the same problem. The issue was resolved by changing the maximum Ping response time, which was too low.

0
source

All Articles