summaryrefslogtreecommitdiff
path: root/spec/workers/concerns
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'security-event-counters-private-data' into 'master'Felipe Artur Cardozo2018-07-241-1/+0
|\ | | | | | | | | [master] Don't expose project names in various counters See merge request gitlab/gitlabhq!2418
| * Don't expose project names in various countersYorick Peterse2018-06-211-1/+0
| | | | | | | | | | | | | | Various counters would expose either project names, or full project paths (e.g. "gitlab-org/gitlab-ce"). This commit changes various places where we use "add_event" so we no longer expose (potentially) private information.
* | Resolve Naming/UncommunicativeMethodLin Jen-Shin2018-07-091-2/+2
|/
* Fix cattr_accessor definitionJan Provaznik2018-05-281-3/+1
| | | | | Use cattr_accessor directly inside the defined class, otherwise in Rails 5 this accessor returns nil.
* Work around Ruby 2.3.7 bug by defining prepended class methods needed for testsStan Hu2018-04-091-0/+6
|
* Fix tests by latest proposal changesproper-fix-for-artifacts-serviceShinya Maeda2018-03-061-1/+1
|
* Integrate two workers into one ArchiveTraceWorker with pipeline_background ↵Shinya Maeda2018-03-061-0/+19
| | | | queue. This queue takes loqer precedence than pipeline_default.
* Revert few more broken specs related to *_with_namespace methodsdz-use-less-deprecated-methodsDmitriy Zaporozhets2018-03-051-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Extract WaitableWorker out of AuthorizedProjectsWorkerDouwe Maan2018-02-261-0/+92
|
* Merge branch ↵Douwe Maan2017-12-201-0/+40
|\ | | | | | | | | | | | | | | | | '39246-fork-and-import-jobs-should-only-be-marked-as-failed-when-the-number-of-retries-was-exhausted' into 'master' Fork and Import jobs only get marked as failed when the number of Sidekiq retries were exhausted Closes #39246 See merge request gitlab-org/gitlab-ce!15844
| * Fork and Import jobs only get marked as failed when the number of Sidekiq ↵39246-fork-and-import-jobs-should-only-be-marked-as-failed-when-the-number-of-retries-was-exhaustedTiago Botelho2017-12-151-0/+40
| | | | | | | | retries were exhausted
* | Use a dedicated queue for each workerDouwe Maan2017-12-126-14/+13
|/
* Consistently schedule Sidekiq jobsdm-application-workerDouwe Maan2017-12-051-0/+31
|
* Add ApplicationWorker and make every worker include itDouwe Maan2017-12-058-25/+56
|
* Rewrite the GitHub importer from scratchYorick Peterse2017-11-075-0/+318
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* create_cluster_service_spec. cluster_provision_worker_spec. cluster_queue_spec.Shinya Maeda2017-10-041-0/+15
|
* Remove sidekiq build queue and assign pipeline queueGrzegorz Bizon2017-08-211-14/+0
|
* Simplify pipeline sidekiq queues naming schemeGrzegorz Bizon2017-08-211-4/+4
|
* Extend pipelines queue mixin and add a default queueGrzegorz Bizon2017-08-211-2/+12
|
* Re-organize queues to use for Sidekiqseparate-sidekiq-queuesYorick Peterse2016-10-215-0/+84
Dumping too many jobs in the same queue (e.g. the "default" queue) is a dangerous setup. Jobs that take a long time to process can effectively block any other work from being performed given there are enough of these jobs. Furthermore it becomes harder to monitor the jobs as a single queue could contain jobs for different workers. In such a setup the only reliable way of getting counts per job is to iterate over all jobs in a queue, which is a rather time consuming process. By using separate queues for various workers we have better control over throughput, we can add weight to queues, and we can monitor queues better. Some workers still use the same queue whenever their work is related. For example, the various CI pipeline workers use the same "pipeline" queue. This commit includes a Rails migration that moves Sidekiq jobs from the old queues to the new ones. This migration also takes care of doing the inverse if ever needed. This does require downtime as otherwise new jobs could be scheduled in the old queues after this migration completes. This commit also includes an RSpec test that blacklists the use of the "default" queue and ensures cron workers use the "cronjob" queue. Fixes gitlab-org/gitlab-ce#23370