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
0b884441
Commit
0b884441
authored
Jan 18, 2021
by
Evan Read
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary screenshot and set updated lint image
parent
0383cee9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
19 deletions
+13
-19
.gitlab/ci/docs.gitlab-ci.yml
.gitlab/ci/docs.gitlab-ci.yml
+1
-1
doc/.vale/gitlab/Acronyms.yml
doc/.vale/gitlab/Acronyms.yml
+1
-0
doc/administration/gitaly/img/gitlab_gitaly_version_mismatch_v12_4.png
...ation/gitaly/img/gitlab_gitaly_version_mismatch_v12_4.png
+0
-0
doc/administration/gitaly/index.md
doc/administration/gitaly/index.md
+9
-11
doc/administration/reference_architectures/troubleshooting.md
...administration/reference_architectures/troubleshooting.md
+2
-7
No files found.
.gitlab/ci/docs.gitlab-ci.yml
View file @
0b884441
...
...
@@ -43,7 +43,7 @@ docs-lint markdown:
-
.default-retry
-
.docs:rules:docs-lint
# When updating the image version here, update it in /scripts/lint-doc.sh too.
image
:
"
registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.12-vale-2.
6.1-markdownlint-0.24
.0"
image
:
"
registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.12-vale-2.
8.0-markdownlint-0.26
.0"
stage
:
test
needs
:
[]
script
:
...
...
doc/.vale/gitlab/Acronyms.yml
View file @
0b884441
...
...
@@ -91,6 +91,7 @@ exceptions:
-
NGINX
-
NOTE
-
NPM
-
NTP
-
ONLY
-
OWASP
-
PAT
...
...
doc/administration/gitaly/img/gitlab_gitaly_version_mismatch_v12_4.png
deleted
100644 → 0
View file @
0383cee9
21.3 KB
doc/administration/gitaly/index.md
View file @
0b884441
...
...
@@ -395,7 +395,7 @@ Gitaly makes the following assumptions:
You can't define Gitaly servers with some as a local Gitaly server
(without
`gitaly_address`
) and some as remote
server (with
`gitaly_address`
) unless you
setup with special
server (with
`gitaly_address`
) unless you
use
[
mixed configuration
](
#mixed-configuration
)
.
**For Omnibus GitLab**
...
...
@@ -502,8 +502,8 @@ If it's excluded, default Git storage directory is used for that storage shard.
### Disable Gitaly where not required (optional)
If you are running Gitaly
[
as a remote service
](
#run-gitaly-on-its-own-server
)
you may want to
disable the local Gitaly service that runs on your GitLab server by default
, leaving
it only running
If you are running Gitaly
[
as a remote service
](
#run-gitaly-on-its-own-server
)
,
you may want to
disable the local Gitaly service that runs on your GitLab server by default
and have
it only running
where required.
Disabling Gitaly on the GitLab instance only makes sense when you run GitLab in a custom cluster configuration, where
...
...
@@ -1007,7 +1007,7 @@ When GitLab calls a function that has a "Rugged patch", it performs two checks:
-
Is the feature flag for this patch set in the database? If so, the feature flag setting controls
the GitLab use of "Rugged patch" code.
-
If the feature flag is not set, GitLab tries accessing the filesystem underneath the
-
If the feature flag is not set, GitLab tries accessing the file
system underneath the
Gitaly server directly. If it can, it uses the "Rugged patch":
-
If using Unicorn.
-
If using Puma and
[
thread count
](
../../install/requirements.md#puma-threads
)
is set
...
...
@@ -1015,9 +1015,9 @@ When GitLab calls a function that has a "Rugged patch", it performs two checks:
The result of these checks is cached.
To see if GitLab can access the repository filesystem directly, we use the following heuristic:
To see if GitLab can access the repository file
system directly, we use the following heuristic:
-
Gitaly ensures that the filesystem has a metadata file in its root with a UUID in it.
-
Gitaly ensures that the file
system has a metadata file in its root with a UUID in it.
-
Gitaly reports this UUID to GitLab via the
`ServerInfo`
RPC.
-
GitLab Rails tries to read the metadata file directly. If it exists, and if the UUID's match,
assume we have direct access.
...
...
@@ -1044,13 +1044,11 @@ The second facet presents the only real solution. For this, we developed
Check
[
Gitaly timeouts
](
../../user/admin_area/settings/gitaly_timeouts.md
)
when troubleshooting
Gitaly.
### Check
ing
versions when using standalone Gitaly servers
### Check versions when using standalone Gitaly servers
When using standalone Gitaly servers, you must make sure they are the same version
as GitLab to ensure full compatibility. Check
**Admin Area > Gitaly Servers**
on
your GitLab instance and confirm all Gitaly Servers are
`Up to date`
.
![
Gitaly standalone software versions diagram
](
img/gitlab_gitaly_version_mismatch_v12_4.png
)
as GitLab to ensure full compatibility. Check
**Admin Area > Overview > Gitaly Servers**
on
your GitLab instance and confirm all Gitaly servers indicate that they are up to date.
### `gitaly-debug`
...
...
doc/administration/reference_architectures/troubleshooting.md
View file @
0b884441
...
...
@@ -206,13 +206,8 @@ To make sure your configuration is correct:
## Troubleshooting Gitaly
### Checking versions when using standalone Gitaly nodes
When using standalone Gitaly nodes, you must make sure they are the same version
as GitLab to ensure full compatibility. Check
**Admin Area > Gitaly Servers**
on
your GitLab instance and confirm all Gitaly Servers are
`Up to date`
.
![
Gitaly standalone software versions diagram
](
../gitaly/img/gitlab_gitaly_version_mismatch_v12_4.png
)
If you have any problems when using standalone Gitaly nodes, first
[
check all the versions are up to date
](
../gitaly/index.md#check-versions-when-using-standalone-gitaly-servers
)
.
### `gitaly-debug`
...
...
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