diff options
author | Job van der Voort <jobvandervoort@gmail.com> | 2014-12-08 13:51:27 +0100 |
---|---|---|
committer | Job van der Voort <jobvandervoort@gmail.com> | 2014-12-08 13:51:27 +0100 |
commit | b7d4184f24000fcdee7ca48fd802e35ac03abb67 (patch) | |
tree | 8d2fda84ba2f1b97e9c7eef8cc8618994a1eb1cd /doc | |
parent | bbf9953b99d59801c72dd7b9550ee149ca77bfcf (diff) | |
download | gitlab-ce-b7d4184f24000fcdee7ca48fd802e35ac03abb67.tar.gz |
advise about unicorn workers
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install/requirements.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/install/requirements.md b/doc/install/requirements.md index 660c1adb802..af7ac6146ad 100644 --- a/doc/install/requirements.md +++ b/doc/install/requirements.md @@ -88,10 +88,18 @@ Sidekiq processes the background jobs with a multithreaded process. This process starts with the entire Rails stack (200MB+) but it can grow over time due to memory leaks. On a very active server (10,000 active users) the Sidekiq process can use 1GB+ of memory. +## Unicorn Workers + +It's possible to increase the amount of unicorn workers. +This will usually help for short waits on databases and caches. + +We recommend using CPU cores + 1 unicorn workers. +For a machine with 2 cores, 3 unicorn workers is ideal. + ## Supported web browsers - Chrome (Latest stable version) -- Firefox (Latest released version and [latest ESR version](https://www.mozilla.org/en-US/firefox/organizations/)) +- Firefox (Latest released version and [latest ESR version](https://www.mozilla.org/en-US/firefox/organizations/)) - Safari 7+ (known problem: required fields in html5 do not work) - Opera (Latest released version) - IE 10+ |