Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-04-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-04-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-01-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-10Add a rubocop for Rails.loggerMayra Cabrera
Suggests to use a JSON structured log instead Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/54102
2018-11-27Removes all the irrelevant import related code and columnsTiago Botelho
Clears the import related columns and code from the Project model over to the ProjectImportState model
2018-08-01Merge branch 'fj-6860-instance-level-project-templates' into 'master'Sean McGivern
[CE Port]: Implement instance level project templates See merge request gitlab-org/gitlab-ce!20761
2018-07-24Merge branch 'security-event-counters-private-data' into 'master'Felipe Artur Cardozo
[master] Don't expose project names in various counters See merge request gitlab/gitlabhq!2418
2018-07-23Code review comment appliedFrancisco Javier López
2018-07-21EE PortFrancisco Javier López
2018-06-27Enable frozen string literals for app/workers/*.rbgfyoung
2018-06-21Don't expose project names in various countersYorick Peterse
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.
2018-01-26add specJames Lopez
2018-01-26disable retry attempts for Import/Export until that is fixedJames Lopez
2017-12-15Fork and Import jobs only get marked as failed when the number of Sidekiq ↵Tiago Botelho
retries were exhausted
2017-12-05Add ApplicationWorker and make every worker include itDouwe Maan
2017-11-08Rewrite the GitHub importer from scratchYorick Peterse
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-10-10Backports EE 38771 changes to CE.Tiago Botelho
2017-08-25Enable 5 lines of Sidekiq backtrace lines to aid in debuggingStan Hu
Customers often have Sidekiq jobs that failed without much context. Without Sentry, there's no way to tell where these exceptions were hit. Adding in additional lines adds a bit more Redis storage overhead. This commit adds in backtrace logging for workers that delete groups/projects and import/export projects. Closes #27626
2017-08-25Revert "Merge branch 'sh-sidekiq-backtrace' into 'master'"Robert Speicher
This reverts merge request !13813
2017-08-24Enable 5 lines of Sidekiq backtrace lines to aid in debuggingStan Hu
Customers often have Sidekiq jobs that failed without much context. Without Sentry, there's no way to tell where these exceptions were hit. Adding in additional lines adds a bit more Redis storage overhead. This commit adds in backtrace logging for workers that delete groups/projects and import/export projects. Closes #27626
2017-08-17Backports EE mirror stuck handling feature ↵Tiago Botelho
(https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2628) to CE
2017-08-01Rename many path_with_namespace -> full_pathGabriel Mazetto
2017-06-06backports changed import logic from pull mirroring feature into CETiago Botelho
2017-04-05Periodically mark projects that are stuck in importing as failedJames Lopez
Adds import jid to projects Refactor middleware to set custom expiration time via sidekiq options Add completed_jids option to sidekiq status and a few other changes
2017-04-03Remove unused include from RepositoryImportWorkerDouglas Barbosa Alexandre
2016-10-21Re-organize queues to use for SidekiqYorick Peterse
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
2016-08-24Does not halt the GitHub import process when an error occursDouglas Barbosa Alexandre
2016-08-17Tracking of custom eventsYorick Peterse
GitLab Performance Monitoring is now able to track custom events not directly related to application performance. These events include the number of tags pushed, repositories created, builds registered, etc. The use of these events is to get a better overview of how a GitLab instance is used and how that may affect performance. For example, a large number of Git pushes may have a negative impact on the underlying storage engine. Events are stored in the "events" measurement and are not prefixed with "rails_" or "sidekiq_", this makes it easier to query events with the same name triggered from different parts of the application. All events being stored in the same measurement also makes it easier to downsample data. Currently the following events are tracked: * Creating repositories * Removing repositories * Changing the default branch of a repository * Pushing a new tag * Removing an existing tag * Pushing a commit (along with the branch being pushed to) * Pushing a new branch * Removing an existing branch * Importing a repository (along with the URL we're importing) * Forking a repository (along with the source/target path) * CI builds registered (and when no build could be found) * CI builds being updated * Rails and Sidekiq exceptions Fixes gitlab-org/gitlab-ce#13720
2016-06-03Update repository_import_worker.rbJames Lopez
2016-06-03some refactoring and fixing specJames Lopez
2016-05-19Mask credentials from URL when import of project has failed.Rubén Dávila
2016-02-23Moved cache expiration code to Repository hooksYorick Peterse
This keeps all the cache expiration code in a single file/class instead of spreading it all across the codebase.
2016-02-17Expire caches after forking/importing a repositoryYorick Peterse
This ensures the caches for Repository#empty? and Repository#has_visible_content? are flushed after a repository has been imported or forked. Fixes gitlab-org/gitlab-ce#13505
2016-01-26Extract Projects::ImportService service from RepositoryImportWorkerDouglas Barbosa Alexandre
2015-11-21Remove accidentally added line. #3598Rubén Dávila
It should exist in EE only.
2015-11-18Remove unused variable in repository importDouwe Maan
2015-11-18Store and show reason why import failed.Douwe Maan