Synopsis
supervisor_idle_threads =
# of threads
The minimum number of Supervisor threads.
This allows the Supervisor to maintain a specified number of threads ready to service network messages. If the Supervisor finds that it is unable to satisfy the incoming traffic, it will spawn additional threads up to supervisor_max_threads
By adjusting this field, the administrator may improve the Supervisor's performance. The increase in threads however also increases Supervisor memory requirements.
To prevent the system from thrashing, it is recommended one use this formula to determine how much RAM is required:
(2Mb + # of jobs * 1kb) ~= total amount of resident RAM
Example
supervisor_idle_threads = 64
Defaults
50