gitlab-org--gitlab-foss/doc/administration
Yorick Peterse 4dfe26cd8b
Rewrite the GitHub importer from scratch
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.
2017-11-07 23:24:59 +01:00
..
auth Exclude comments from specific docs 2017-11-01 15:56:40 +00:00
gitaly Add grpc.log for Gitaly 2017-10-03 11:28:40 +00:00
high_availability
img Allow configuring new circuitbreaker settings from the UI and API 2017-10-23 12:02:23 +03:00
integration Update gitlab-markup and PlantUML docs 2017-11-01 13:50:35 +01:00
monitoring Rewrite the GitHub importer from scratch 2017-11-07 23:24:59 +01:00
operations Send SIGSTP before SIGTERM to actually give Sidekiq jobs 30s to finish when the memory killer kicks in 2017-11-02 15:33:19 +01:00
pages
raketasks clarify resuming import 2017-10-17 06:06:04 +00:00
troubleshooting Remove Private Token from User Settings > Account 2017-11-02 11:39:01 +01:00
build_artifacts.md
container_registry.md
custom_hooks.md
environment_variables.md
housekeeping.md
issue_closing_pattern.md
job_artifacts.md Clarify where the artifacts metadata .gz is generated 2017-10-05 02:56:52 -05:00
logs.md Add reconfigure docs to CE 2017-11-06 17:49:54 +02:00
operations.md
polling.md
reply_by_email.md
reply_by_email_postfix_setup.md
repository_checks.md
repository_storage_paths.md Allow enabling the circuitbreaker using an env variable 2017-10-23 13:53:49 +03:00
repository_storage_types.md Fix typo 2017-11-01 17:04:08 +00:00
repository_storages.md
restart_gitlab.md