summaryrefslogtreecommitdiff
path: root/doc/administration
Commit message (Collapse)AuthorAgeFilesLines
* add note on deploying Pages to a private networkdocs-pages-admin-updateMarcia Ramos2017-12-061-0/+3
|
* Updating trouble shooting linksLyle Kozloff2017-12-011-1/+3
|
* I am certainly weary of debugging sidekiq but I don't think that's what was ↵be-wary-of-typosGreg Stark2017-11-281-1/+1
| | | | meant
* Merge branch 'hashed-storage-attachments-migration-path' into 'master'Nick Thomas2017-11-281-13/+84
|\ | | | | | | | | Hashed storage attachments migration path See merge request gitlab-org/gitlab-ce!15352
| * Changelog and Documentation for storage migration of project attachmentsGabriel Mazetto2017-11-231-13/+84
| |
* | Allow password authentication to be disabled entirelyMarkus Koller2017-11-231-0/+6
| |
* | Fix the redirect location wordingAchilleas Pipinellis2017-11-231-3/+1
|/ | | | Closes https://gitlab.com/gitlab-com/gitlab-docs/issues/142
* Document how to troubleshoot internal API callsStan Hu2017-11-181-0/+28
| | | | | | [ci skip] iFoo
* Update HA README.md to clarify GitLab support does not troubleshoot DRBD.Lee Matos2017-11-161-1/+3
|
* Merge branch 'update-upload-documentation' into 'master'Nick Thomas2017-11-081-10/+10
|\ | | | | | | | | Added file storage documentation and updated hash storage one See merge request gitlab-org/gitlab-ce!15269
| * Added file storage documentation and updated hash storage oneGabriel Mazetto2017-11-081-10/+10
| |
* | Rewrite the GitHub importer from scratchYorick Peterse2017-11-071-0/+101
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this MR there were two GitHub related importers: * Github::Import: the main importer used for GitHub projects * Gitlab::GithubImport: importer that's somewhat confusingly used for importing Gitea projects (apparently they have a compatible API) This MR renames the Gitea importer to Gitlab::LegacyGithubImport and introduces a new GitHub importer in the Gitlab::GithubImport namespace. This new GitHub importer uses Sidekiq for importing multiple resources in parallel, though it also has the ability to import data sequentially should this be necessary. The new code is spread across the following directories: * lib/gitlab/github_import: this directory contains most of the importer code such as the classes used for importing resources. * app/workers/gitlab/github_import: this directory contains the Sidekiq workers, most of which simply use the code from the directory above. * app/workers/concerns/gitlab/github_import: this directory provides a few modules that are included in every GitHub importer worker. == Stages The import work is divided into separate stages, with each stage importing a specific set of data. Stages will schedule the work that needs to be performed, followed by scheduling a job for the "AdvanceStageWorker" worker. This worker will periodically check if all work is completed and schedule the next stage if this is the case. If work is not yet completed this worker will reschedule itself. Using this approach we don't have to block threads by calling `sleep()`, as doing so for large projects could block the thread from doing any work for many hours. == Retrying Work Workers will reschedule themselves whenever necessary. For example, hitting the GitHub API's rate limit will result in jobs rescheduling themselves. These jobs are not processed until the rate limit has been reset. == User Lookups Part of the importing process involves looking up user details in the GitHub API so we can map them to GitLab users. The old importer used an in-memory cache, but this obviously doesn't work when the work is spread across different threads. The new importer uses a Redis cache and makes sure we only perform API/database calls if absolutely necessary. Frequently used keys are refreshed, and lookup misses are also cached; removing the need for performing API/database calls if we know we don't have the data we're looking for. == Performance & Models The new importer in various places uses raw INSERT statements (as generated by `Gitlab::Database.bulk_insert`) instead of using Rails models. This allows us to bypass any validations and callbacks, drastically reducing the number of SQL queries and Gitaly RPC calls necessary to import projects. To ensure the code produces valid data the corresponding tests check if the produced rows are valid according to the model validation rules.
* Add reconfigure docs to CEStan Hu2017-11-061-0/+9
|
* Merge branch 'dm-sidekiq-sigstp' into 'master'Sean McGivern2017-11-021-3/+1
|\ | | | | | | | | Send SIGSTP before SIGTERM to actually give Sidekiq jobs 30s to finish when the memory killer kicks in See merge request gitlab-org/gitlab-ce!15102
| * Send SIGSTP before SIGTERM to actually give Sidekiq jobs 30s to finish when ↵dm-sidekiq-sigstpDouwe Maan2017-11-021-3/+1
| | | | | | | | the memory killer kicks in
* | Remove Private Token from User Settings > AccountDouwe Maan2017-11-021-1/+1
| |
* | Merge branch 'patch-29' into 'master'Douwe Maan2017-11-011-1/+1
|\ \ | | | | | | | | | | | | Fix typo See merge request gitlab-org/gitlab-ce!15136
| * | Fix typoMichael Kozono2017-11-011-1/+1
| |/
* | Merge branch 'feature/plantuml-restructured-text-captions' into 'master'Douwe Maan2017-11-011-16/+21
|\ \ | |/ |/| | | | | Update gitlab-markup and PlantUML docs See merge request gitlab-org/gitlab-ce!15120
| * Update gitlab-markup and PlantUML docsMarkus Koller2017-11-011-16/+21
| |
* | Exclude comments from specific docsAchilleas Pipinellis2017-11-011-0/+4
|/
* Merge branch '3674-hashed-storage-attachments' into 'master'Douwe Maan2017-10-311-1/+24
|\ | | | | | | | | Hashed Storage support for Attachments See merge request gitlab-org/gitlab-ce!15068
| * Document existing storable objects and their status regarding Hashed storageGabriel Mazetto2017-10-301-1/+24
| |
* | Allow to disable the Performance Bar and document the `p b` shortcut in its ↵Rémy Coutable2017-10-301-0/+6
| | | | | | | | | | | | doc page Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Add missing circuitbreaker metrics to prometheus documentationbvl-add-circuitbreaker-metrics-docsBob Van Landuyt2017-10-271-1/+3
|/
* Allow enabling the circuitbreaker using an env variablebvl-circuitbreaker-backoffBob Van Landuyt2017-10-231-0/+9
| | | | That way we can enable the circuitbreaker for just one host at a time.
* Allow configuring new circuitbreaker settings from the UI and APIBob Van Landuyt2017-10-232-0/+5
|
* Add docs for `api_json.log` filesh-api-json-logsStan Hu2017-10-181-2/+22
| | | | [ci skip]
* Merge branch 'fix/github-doc' into 'master'Rémy Coutable2017-10-171-0/+1
|\ | | | | | | | | Clarify how to resume GitHub import on docs See merge request gitlab-org/gitlab-ce!14905
| * clarify resuming importfix/github-docJames Lopez2017-10-171-0/+1
| |
* | Allow configuring the circuitbreaker through the API and UIBob Van Landuyt2017-10-172-24/+14
| |
* | Read circuitbreaker settings from `Gitlab::CurrentSettings`Bob Van Landuyt2017-10-171-26/+1
|/ | | | Instead of from the configuration file
* Fix LDAP config key nameMichael Kozono2017-10-061-2/+2
|
* Clarify where the artifacts metadata .gz is generatedEric Eastwood2017-10-051-3/+3
|
* Add grpc.log for GitalyJacob Vosmaer (GitLab)2017-10-031-0/+8
|
* Add support to migrate existing projects to Hashed Storage asynchashed-storage-migration-pathGabriel Mazetto2017-09-282-0/+176
|
* Merge branch 'rs-incoming-email-domain-docs' into 'security-10-0'Robert Speicher2017-09-171-2/+29
| | | | | | | Add Security Concerns section to reply by email documentation [ci skip] See merge request gitlab/gitlabhq!2191
* Merge branch 'docs-gitaly-client-config' into 'master'Achilleas Pipinellis2017-09-131-2/+2
|\ | | | | | | | | Fix Ruby syntax error in Gitaly config example See merge request !14208
| * Fix Ruby syntax error in Gitaly config exampledocs-gitaly-client-configJacob Vosmaer2017-09-121-2/+2
| |
* | Update ldap.mdfix/ldap-typo-docsJames Lopez2017-09-081-1/+1
|/
* Merge branch 'feature/plantuml-restructured-text' into 'master'Rémy Coutable2017-09-071-1/+10
|\ | | | | | | | | Add documentation for PlantUML in reStructuredText See merge request !13900
| * Add documentation for PlantUML in reStructuredTextMarkus Koller2017-08-291-1/+10
| |
* | Clarify documentation about performance barernstvn2017-09-061-8/+8
| |
* | Deprecate Koding in docsdocs/rm-kodingAchilleas Pipinellis2017-09-011-1/+5
| |
* | Default LDAP config verify_certificates to trueMichael Kozono2017-08-301-3/+6
|/
* Point to /developers on docs/administration/authentiq.mdAlexandros Keramidas2017-08-211-1/+1
|
* Merge branch '36192-change-ha-docs-to-update-using-efs-as-nfs' into 'master'Stan Hu2017-08-101-0/+4
|\ | | | | | | | | | | | | Resolve "Change HA docs to update using EFS as NFS" Closes #36192 See merge request !13400
| * Update nfs.md with information on AWS EFS and Burst Credit usage and how to ↵36192-change-ha-docs-to-update-using-efs-as-nfsJohn Woods2017-08-081-0/+4
| | | | | | | | increase Burst Credit limits and also limit the need for AWS to access EFS by using FS Cache.
* | Add docs on structured logging in GitLabsh-structured-log-docsStan Hu2017-08-081-0/+27
|/ | | | [ci skip]
* Add a Circuitbreaker for storage pathsBob Van Landuyt2017-08-042-3/+74
|