Heh,
We just put our new annual report online for our members to fill out. On a dual 800 MHz Xeon (AOLserver 3.5.6) with 2 GB of RAM, Linux kernel 2.4.22 we have
ns_param MaxThreads 40 ;# Maximum threads
ns_param MinThreads 40 ;# Start this many on server start
ns_param ThreadTimeout 60 ;# Shut down a thread if idle after 60 seconds
ns_param MaxConnections 100 ;# Queue and service this many conns.
;# If over this many conns, send 503 Server Busy
ns_param MaxDropped 0 ;# Disable auto shutdown of server in case of
;# too many Server Too Busy messages.
And each of the main/log/subquery database pools have 55 connections configured. I did it that way because I didn't want a thread to wait on a connection if by some chance all the threads hit the DB at the same time.
Our nsd RSS sizes are hovering around 719 MB and have been as high as 1.1 GB. That doesn't seem normal to me, but things are running OK, so I'm not (yet) worried.
We are seeing OK performance. I think it should be better but I'm having a hard time telling if the database or the webserver is the bottleneck. Suggestions for determining that will be appreciated.