Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b7d4184f
Commit
b7d4184f
authored
Dec 08, 2014
by
Job van der Voort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advise about unicorn workers
parent
bbf9953b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
8 deletions
+18
-8
config/unicorn.rb.example
config/unicorn.rb.example
+9
-7
doc/install/requirements.md
doc/install/requirements.md
+9
-1
No files found.
config/unicorn.rb.example
View file @
b7d4184f
...
...
@@ -13,9 +13,11 @@
#
# ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
# Use at least one worker per core if you're on a dedicated server,
# more will usually help for _short_ waits on databases/caches.
# The minimum is 2
# We recommend using CPU cores + 1 worker processes.
# Read more about unicorn workers here:
# http://doc.gitlab.com/ee/install/requirements.html
#
# The minimum amount of worker processes is 2
worker_processes 2
# Since Unicorn is never exposed to outside clients, it does not need to
...
...
@@ -37,10 +39,10 @@ listen "127.0.0.1:8080", :tcp_nopush => true
# nuke workers after 30 seconds instead of 60 seconds (the default)
#
# NOTICE: git push over http depends on this value.
# If you want be able to push huge amount of data to git repository over http
# you will have to increase this value too.
#
# NOTICE: git push over http depends on this value.
# If you want be able to push huge amount of data to git repository over http
# you will have to increase this value too.
#
# Example of output if you try to push 1GB repo to GitLab over http.
# -> git push http://gitlab.... master
#
...
...
doc/install/requirements.md
View file @
b7d4184f
...
...
@@ -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+
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment