gitlab-org--gitlab-foss/spec/lib
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
..
api/helpers Total Pages should be at least one 2017-08-17 21:47:01 +02:00
banzai Fix GFM reference links for closed milestones 2017-11-07 14:32:32 +11:00
bitbucket Enable the Layout/SpaceBeforeBlockBraces cop 2017-08-09 11:52:22 +02:00
constraints Change all :empty_project to :project 2017-08-02 17:47:31 -04:00
container_registry Prevent new / renamed project from using a repository path that already exists on disk 2017-08-25 20:06:06 +02:00
github Fix notes type created from import 2017-09-29 11:18:58 +00:00
gitlab Rewrite the GitHub importer from scratch 2017-11-07 23:24:59 +01:00
google_api Change default cluster size to n1-standard-2 2017-11-06 15:04:15 +01:00
json_web_token Enable the Layout/SpaceBeforeBlockBraces cop 2017-08-09 11:52:22 +02:00
mattermost Fix Mattermost integration 2017-08-04 12:22:10 +03:00
microsoft_teams
rspec_flaky Ensure we set SUITE_FLAKY_RSPEC_REPORT_PATH to nil in RspecFlaky::Listener spec 2017-10-06 19:57:42 +02:00
system_check Remove an exception from the git user default SSH config check 2017-11-02 13:31:11 +00:00
additional_email_headers_interceptor_spec.rb Only set Auto-Submitted header once 2017-10-30 13:50:19 +00:00
after_commit_queue_spec.rb Backports EE mirror stuck handling feature (https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2628) to CE 2017-08-17 13:38:05 +01:00
disable_email_interceptor_spec.rb Use described_class when possible 2017-07-27 14:31:53 +02:00
event_filter_spec.rb Migrate events into a new format 2017-08-10 17:45:44 +02:00
expand_variables_spec.rb Enable the Style/TrailingCommaInLiteral cop 2017-05-10 18:25:45 +02:00
extracts_path_spec.rb Enable the Layout/SpaceBeforeBlockBraces cop 2017-08-09 11:52:22 +02:00
feature_spec.rb Cache feature names in RequestStore 2017-11-07 22:28:57 +01:00
file_size_validator_spec.rb Whitelist or fix additional Gitlab/PublicSend cop violations 2017-08-14 12:14:11 -04:00
gitlab_spec.rb Remove superfluous lib: true, type: redis, service: true, models: true, services: true, no_db: true, api: true 2017-07-27 14:31:53 +02:00
repository_cache_spec.rb Change all :empty_project to :project 2017-08-02 17:47:31 -04:00
system_check_spec.rb Use described_class when possible 2017-07-27 14:31:53 +02:00