473,416 Members | 1,562 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Aspnet worker process recycling

Just wondering if anyone has aspnet process recycling set up in any
production environments. Our worker process memory gets out of control
after being up for about a day or so and we were thinking about setting up
some thresholds on memory usage.

Any experiences using this would be greatly appreciated.

thanks
Nov 18 '05 #1
6 2107
what do you need to know? I believe I have one site set to with something
like a 100mb limit threshhold (might be lower/higher, dont remember).
Setting it up is no biggie, just dont set it too low to kill your site.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:u5**************@TK2MSFTNGP10.phx.gbl...
Just wondering if anyone has aspnet process recycling set up in any
production environments. Our worker process memory gets out of control
after being up for about a day or so and we were thinking about setting up
some thresholds on memory usage.

Any experiences using this would be greatly appreciated.

thanks

Nov 18 '05 #2
Just wondering if it caused any problems. Like killing sessions or messing
up a request if it was in the middle of processing a page when it restarts.

thanks

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uO**************@tk2msftngp13.phx.gbl...
what do you need to know? I believe I have one site set to with something
like a 100mb limit threshhold (might be lower/higher, dont remember).
Setting it up is no biggie, just dont set it too low to kill your site.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:u5**************@TK2MSFTNGP10.phx.gbl...
Just wondering if anyone has aspnet process recycling set up in any
production environments. Our worker process memory gets out of control
after being up for about a day or so and we were thinking about setting up some thresholds on memory usage.

Any experiences using this would be greatly appreciated.

thanks


Nov 18 '05 #3
On Fri, 9 Jul 2004 15:36:59 -0500, "mark" <ma*****@kc.rr.com> wrote:
Just wondering if it caused any problems. Like killing sessions or messing
up a request if it was in the middle of processing a page when it restarts.

thanks


I believe the sessions will be lost.

-Adam
Nov 18 '05 #4
Yup. That it can/will.
But then again, if it spikes that high/hard your sessions are probably going
to timeout anyway. Better to recycle that app pool then recycle the entire
server's pools.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
Just wondering if it caused any problems. Like killing sessions or messing
up a request if it was in the middle of processing a page when it restarts.
thanks

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uO**************@tk2msftngp13.phx.gbl...
what do you need to know? I believe I have one site set to with something
like a 100mb limit threshhold (might be lower/higher, dont remember).
Setting it up is no biggie, just dont set it too low to kill your site.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:u5**************@TK2MSFTNGP10.phx.gbl...
Just wondering if anyone has aspnet process recycling set up in any
production environments. Our worker process memory gets out of control after being up for about a day or so and we were thinking about
setting up some thresholds on memory usage.

Any experiences using this would be greatly appreciated.

thanks



Nov 18 '05 #5
That's weird because we've been testing this internally by setting the
timeout to 1 MINUTE, and then pounding pages that all use session and they
work fine. If the session was lost, the page would error.

?

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:O2**************@TK2MSFTNGP10.phx.gbl...
Yup. That it can/will.
But then again, if it spikes that high/hard your sessions are probably going to timeout anyway. Better to recycle that app pool then recycle the entire
server's pools.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
Just wondering if it caused any problems. Like killing sessions or messing
up a request if it was in the middle of processing a page when it

restarts.

thanks

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uO**************@tk2msftngp13.phx.gbl...
what do you need to know? I believe I have one site set to with

something like a 100mb limit threshhold (might be lower/higher, dont remember).
Setting it up is no biggie, just dont set it too low to kill your site.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:u5**************@TK2MSFTNGP10.phx.gbl...
> Just wondering if anyone has aspnet process recycling set up in any
> production environments. Our worker process memory gets out of control > after being up for about a day or so and we were thinking about

setting
up
> some thresholds on memory usage.
>
> Any experiences using this would be greatly appreciated.
>
> thanks
>
>



Nov 18 '05 #6
Oh, I think why we don't lose session state is because we're using an actual
state server, so our state is not stored in the aspnet worker process.

thanks.

http://www.eggheadcafe.com/articles/20021016.asp

"mark" <ma*****@kc.rr.com> wrote in message
news:eH**************@TK2MSFTNGP10.phx.gbl...
That's weird because we've been testing this internally by setting the
timeout to 1 MINUTE, and then pounding pages that all use session and they
work fine. If the session was lost, the page would error.

?

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:O2**************@TK2MSFTNGP10.phx.gbl...
Yup. That it can/will.
But then again, if it spikes that high/hard your sessions are probably

going
to timeout anyway. Better to recycle that app pool then recycle the entire
server's pools.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"mark" <ma*****@kc.rr.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
Just wondering if it caused any problems. Like killing sessions or

messing up a request if it was in the middle of processing a page when it

restarts.

thanks

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uO**************@tk2msftngp13.phx.gbl...
> what do you need to know? I believe I have one site set to with

something
> like a 100mb limit threshhold (might be lower/higher, dont remember). > Setting it up is no biggie, just dont set it too low to kill your site. >
> --
> Curt Christianson
> Owner/Lead Developer, DF-Software
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "mark" <ma*****@kc.rr.com> wrote in message
> news:u5**************@TK2MSFTNGP10.phx.gbl...
> > Just wondering if anyone has aspnet process recycling set up in any > > production environments. Our worker process memory gets out of

control
> > after being up for about a day or so and we were thinking about

setting
up
> > some thresholds on memory usage.
> >
> > Any experiences using this would be greatly appreciated.
> >
> > thanks
> >
> >
>
>



Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Matt Calhoon | last post by:
Hi there, I have specified a aspnet user account to run all .net sites. This account needs access to start a .BAT File (in my global.asax on session start the app needs to execute this bat...
3
by: Trevor Andrew | last post by:
Hi There, I have a small ASP.NET application under development. I am using VS.NET 2002 (2003 upgrade is on the way) with .NET Framework 1.1. It is hosted on a web hosting service in the US. I am...
0
by: Trevor Andrew | last post by:
Hi There, I have posted something previously regarding this issue, but I think I have some more concise questions to ask, and would like to get further feedback on this issue. Firstly the...
12
by: adam | last post by:
Hi I Have a problem with and asp.net application recycling. ON the development machines it works fine, but on the clients machine it keeps recycling. When some users access the app, the...
0
by: Henry Chen | last post by:
Hi all, I would like to know the side effect if I am going to change the worker process and use the proactive process recycling. I mean what could be the problem if I change the settings such as...
2
by: Jeremy S. | last post by:
Just wondering if/how a sliding Cache expiration interacts with Application Pool Worker Process Recycling. Specifically, if I were to place some value into the Cache object with a sliding window...
7
by: M. Simioni | last post by:
Hi, i'm always auditing ASPNET's account accesses on my webserver, a WIN2K_SP4 + IIS5 + SQLServer2K_SP3a machine. Nearly all the applications work correctly, but i constantly find a message in...
3
by: Marcel van den Hof | last post by:
Dear all, Is there any way to prevent the ASP.NET worker process from recycling the worker process when a thread is being executed on the foreground (IsBackground=false). I'd also like to...
1
by: Pablo Bianco SE | last post by:
Hi everyone, I am new in this group. I have a question and would like to have some support. A customer is experiencing memory problems with the asp.net worker process. The have an application...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.