You are viewing an old version of this page. View the current version.

    Compare with Current View Page History

    « Previous Version 2 Next »

    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

    Icon

    This doesn't include the 7 additional threads the Supervisor opens to identify idle hosts ready to run jobs, contact dead Workers, and to execute time-based events.

    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

    • No labels