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
946943c8
Commit
946943c8
authored
Jul 01, 2020
by
Evan Read
Committed by
Marcin Sedlak-Jakubowski
Jul 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor rotate token and Rugged docs
parent
570a583c
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
158 additions
and
150 deletions
+158
-150
doc/.vale/gitlab/Acronyms.yml
doc/.vale/gitlab/Acronyms.yml
+1
-0
doc/administration/gitaly/index.md
doc/administration/gitaly/index.md
+147
-142
doc/administration/operations/puma.md
doc/administration/operations/puma.md
+10
-8
No files found.
doc/.vale/gitlab/Acronyms.yml
View file @
946943c8
...
@@ -72,6 +72,7 @@ exceptions:
...
@@ -72,6 +72,7 @@ exceptions:
-
USB
-
USB
-
URI
-
URI
-
URL
-
URL
-
UUID
-
VPC
-
VPC
-
WIP
-
WIP
-
XML
-
XML
...
...
doc/administration/gitaly/index.md
View file @
946943c8
This diff is collapsed.
Click to expand it.
doc/administration/operations/puma.md
View file @
946943c8
# Switching to Puma
# Switching to Puma
## Puma
As of GitLab 12.9,
[
Puma
](
https://github.com/puma/puma
)
has replaced
[
Unicorn
](
https://yhbt.net/unicorn/
)
.
As of GitLab 12.9,
[
Puma
](
https://github.com/puma/puma
)
has replaced
[
Unicorn
](
https://yhbt.net/unicorn/
)
.
as the default web server. Starting with 13.0, both all-in-one package based
as the default web server. From GitLab 13.0, the following run Puma instead of Unicorn unless
installations as well as Helm chart based installations will run Puma instead of
explicitly configured not to:
Unicorn unless explicitly specified not to.
-
All-in-one package-based installations.
-
Helm chart-based installations.
## Why switch to Puma?
## Why switch to Puma?
...
@@ -32,10 +32,12 @@ Additionally we strongly recommend that multi-node deployments [configure their
...
@@ -32,10 +32,12 @@ Additionally we strongly recommend that multi-node deployments [configure their
## Performance caveat when using Puma with Rugged
## Performance caveat when using Puma with Rugged
For deployments where NFS is used to store Git repository, we allow GitLab to use
For deployments where NFS is used to store Git repository, we allow GitLab to use
[
Direct Git Access
](
../gitaly/#direct-git-access-in-gitlab-rails
)
to improve performance via usage of
[
Rugged
](
https://github.com/libgit2/rugged
)
.
[
direct Git access
](
../gitaly/index.md#direct-access-to-git-in-gitlab
)
to improve performance using
[
Rugged
](
https://github.com/libgit2/rugged
)
.
Rugged usage is automatically enabled if Direct Git Access is present, unless it
Rugged usage is automatically enabled if direct Git access
is disabled by
[
feature flags
](
../../development/gitaly.md#legacy-rugged-code
)
.
[
is available
](
../gitaly/index.md#how-it-works
)
, unless it is disabled by
[
feature flags
](
../../development/gitaly.md#legacy-rugged-code
)
.
MRI Ruby uses a GVL. This allows MRI Ruby to be multi-threaded, but running at
MRI Ruby uses a GVL. This allows MRI Ruby to be multi-threaded, but running at
most on a single core. Since Rugged can use a thread for long periods of
most on a single core. Since Rugged can use a thread for long periods of
...
...
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