Re: [users@httpd] MPM worker - ThreadLimit and ThreadsPerChild

2018-08-24 Thread Campbell, Lance
I just figured it out. I found a document that explains just terms. ThreadsPerChild is the STARTING number of threads per process. ThreadLimit is the MAX threads that should be created by a child process. So when calculating ServerLimit you should always use the worst case formula. ServerLimt

Re: [users@httpd] MPM worker - ThreadLimit and ThreadsPerChild

2018-08-24 Thread Eric Covener
On Fri, Aug 24, 2018 at 3:42 PM Campbell, Lance wrote: > > Apache 2.4 > > MPM Worker > > The relationship between ThreadLimit and ThreadsPerChild is not very clear. > These are some questions I have. > > > > Why would you ever want ThreadLimit bigger than ThreadsPerChild? Obscure: So you can rai

[users@httpd] MPM worker - ThreadLimit and ThreadsPerChild

2018-08-24 Thread Campbell, Lance
Apache 2.4 MPM Worker The relationship between ThreadLimit and ThreadsPerChild is not very clear. These are some questions I have. 1. Why would you ever want ThreadLimit bigger than ThreadsPerChild? 2. If you do want it bigger then how do you determine how much bigger it should be? 3.