Commit acfbeced authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'minor_doc_updates' into 'master'

Minor doc updates

## What does this MR do?

Adds to and clarifies some documentation. Specifically, when using `gdb` to debug you need to detach and exit when done. Next, this clarifies the type of file locking that we require.

Thanks to @northrup for the details about mandatory vs. advisory file locking.

Note: These were two really small changes so I combined in to one merge request. However, I left the commits separate for clarity.

See merge request !4421
parents 30524901 c1923aef
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
## Required NFS Server features ## Required NFS Server features
**File locking**: GitLab **requires** file locking which is only supported **File locking**: GitLab **requires** advisory file locking, which is only
natively in NFS version 4. NFSv3 also supports locking as long as supported natively in NFS version 4. NFSv3 also supports locking as long as
Linux Kernel 2.6.5+ is used. We recommend using version 4 and do not Linux Kernel 2.6.5+ is used. We recommend using version 4 and do not
specifically test NFSv3. specifically test NFSv3.
......
...@@ -150,6 +150,14 @@ To output a backtrace from all threads at once: ...@@ -150,6 +150,14 @@ To output a backtrace from all threads at once:
apply all thread bt apply all thread bt
``` ```
Once you're done debugging with `gdb`, be sure to detach from the process and
exit:
```
detach
exit
```
## Check for blocking queries ## Check for blocking queries
Sometimes the speed at which Sidekiq processes jobs can be so fast that it can Sometimes the speed at which Sidekiq processes jobs can be so fast that it can
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment