Re: huge apache+mod_perl processes

2010-10-07 Thread Eugene Toropov
riginal Message - From: "Cees Hek" To: "William T" Cc: "Eugene Toropov" ; Sent: Thursday, October 07, 2010 3:06 AM Subject: Re: huge apache+mod_perl processes Also, if you are using something like Cache::FastMmap, your processes will look quite large depending

Re: huge apache+mod_perl processes

2010-10-06 Thread Cees Hek
Also, if you are using something like Cache::FastMmap, your processes will look quite large depending on the size of your cache, but this memory is shared between children so it is not that big a deal. From the docs: - Because Cache::FastMmap mmap's a shared file into your processes memory sp

Re: huge apache+mod_perl processes

2010-10-05 Thread William T
If you don't have an unbounded growth issue it is likely do to some library pulling in alot of dependencies or the creation/caching in memory of some large data structure. You can preload all the offending libraries and see if that causes a jump in the initial memory allocation for you apache proc

Re: huge apache+mod_perl processes

2010-10-04 Thread Michael Ludwig
Hi Eugene, Eugene Toropov schrieb am 28.09.2010 um 13:16 (+0400): > > We have a problem with huge Apache+mod_perl2 processes of 150-200 Mb > in size. After apache restart they are usually 40-50 Mb in size, then > in a minute grow up to 100-150 Mb and then some time later may grow up > to 200 Mb.

huge apache+mod_perl processes

2010-10-01 Thread Eugene Toropov
Greetings, We have a problem with huge Apache+mod_perl2 processes of 150-200 Mb in size. After apache restart they are usually 40-50 Mb in size, then in a minute grow up to 100-150 Mb and then some time later may grow up to 200 Mb. I suspect a certain type of http queries and would like to know

Re: huge apache+mod_perl processes

2010-09-30 Thread André Warnier
Eugene Toropov wrote: Greetings, We have a problem with huge Apache+mod_perl2 processes of 150-200 Mb in size. After apache restart they are usually 40-50 Mb in size, then in a minute grow up to 100-150 Mb and then some time later may grow up to 200 Mb. One basic characteristic of Perl's memo

Re: huge apache+mod_perl processes

2010-09-30 Thread Dave Hodgkinson
On 29 Sep 2010, at 20:17, Eugene Toropov wrote: > Greetings, > > We have a problem with huge Apache+mod_perl2 processes of 150-200 Mb in size. > After apache restart they are usually 40-50 Mb in size, then in a minute grow > up to 100-150 Mb and then some time later may grow up to 200 Mb. I s

huge apache+mod_perl processes

2010-09-29 Thread Eugene Toropov
Greetings, We have a problem with huge Apache+mod_perl2 processes of 150-200 Mb in size. After apache restart they are usually 40-50 Mb in size, then in a minute grow up to 100-150 Mb and then some time later may grow up to 200 Mb. I suspect a certain type of http queries and would like to know