summaryrefslogtreecommitdiff
path: root/config/sidekiq_queues.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot2020-04-201-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-091-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-081-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-261-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-201-0/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-181-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-171-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-131-0/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-121-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-251-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-111-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-071-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-071-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-051-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-311-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-291-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-281-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-241-113/+219
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-211-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-201-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-161-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-101-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-071-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-071-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-171-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-061-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-111-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-291-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-231-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-171-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterlistGitLab Bot2019-10-171-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-041-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-231-0/+1
|
* Add approval MR rule to all_models.ymlmo khan2019-09-091-0/+1
|
* CE port for pipelines for external pull requestsce-detect-github-pull-requestsFabio Pitino2019-09-051-0/+1
| | | | | | | | | | | | | | | Detect if pipeline runs for a GitHub pull request When using a mirror for CI/CD only we register a pull_request webhook. When a pull_request webhook is received, if the source branch SHA matches the actual head of the branch in the repository we create immediately a new pipeline for the external pull request. Otherwise we store the pull request info for when the push webhook is received. When using "only/except: external_pull_requests" we can detect if the pipeline has a open pull request on GitHub and create or not the job based on that.
* Backport "Track repository pushes as audit events"Oswaldo Ferreira2019-09-041-0/+1
|
* [CE] Add hooks to sync dev info to Jira using Connect AppHeinrich Lee Yu2019-08-191-0/+1
|
* Adds chaos endpoints to Sidekiqan-sidekiq-chaosAndrew Newdigate2019-07-181-0/+1
| | | | | This allows the chaos endpoints to be invoked in Sidekiq so that this environment can be tested for resilience.
* Includes logic to persist namespace statisticsMayra Cabrera2019-07-021-0/+1
| | | | | | | | | | | | | | | | | | | | | - Add two new ActiveRecord models: - RootNamespaceStoragestatistics will persist root namespace statistics - NamespaceAggregationSchedule will save information when a new update to the namespace statistics needs to be scheduled - Inject into UpdateProjectStatistics concern a new callback that will call an async job to insert a new row onto NamespaceAggregationSchedule table - When a new row is inserted a new job is scheduled. This job will update call an specific service to update the statistics and after that it will delete thee aggregated scheduled row - The RefresherServices makes heavy use of arel to build composable queries to update Namespace::RootStorageStatistics attributes. - Add an extra worker to traverse pending rows on NAmespace::AggregationSchedule table and schedule a worker for each one of this rows. - Add an extra worker to traverse pending rows on NAmespace::AggregationSchedule table and schedule a worker for each one of this rows
* Renew Let's Encrypt certificatesVladimir Shushlin2019-06-241-0/+1
| | | | | | | | Add index for pages domain ssl auto renewal Add PagesDomain.needs_ssl_renewal scope Add cron worker for ssl renewal Add worker for ssl renewal Add pages ssl renewal worker queues settings
* Backport Sidekiq queue names from EEYorick Peterse2019-06-201-0/+17
|
* Introduce sidekiq worker for auto merge processintroduce-auto-merge-process-workerShinya Maeda2019-06-041-0/+1
| | | | | As we have a central domain for auto merge process today, we should use a single worker for any auto merge process.
* Setup Phabricator importBob Van Landuyt2019-05-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | This sets up all the basics for importing Phabricator tasks into GitLab issues. To import all tasks from a Phabricator instance into GitLab, we'll import all of them into a new project that will have its repository disabled. The import is hooked into a regular ProjectImport setup, but similar to the GitHub parallel importer takes care of all the imports itself. In this iteration, we're importing each page of tasks in a separate sidekiq job. The first thing we do when requesting a new page of tasks is schedule the next page to be imported. But to avoid deadlocks, we only allow a single job per worker type to run at the same time. For now we're only importing basic Issue information, this should be extended to richer information.
* Fix the bug that the project statistics is not updatedHiroyuki Sato2019-04-051-1/+2
|
* Allow external diffs to be used conditionallyNick Thomas2019-03-271-0/+1
| | | | | | | | | | Since external diffs are likely to be a bit slower than in-database ones, add a mode that makes diffs external after they've been obsoleted by events. This should strike a balance between performance and disk space. A background cron drives the majority of migrations, since diffs become outdated through user actions.
* Adds Rollback functionality to HashedStorage migrationGabriel Mazetto2019-03-011-0/+1
| | | | | | | We are adding sidekiq workers and service classes to allow to rollback a hashed storage migration. There are some refactoring involved as well as part of the code can be reused by both the migration and the rollback logic.
* Add project http fetch statistics APIJacopo2019-02-271-0/+1
| | | | | | The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
* Move ChatOps to CoreJames Fargher2019-02-201-0/+1
| | | | ChatOps used to be in the Ultimate tier.
* Refactor Storage MigrationGabriel Mazetto2019-01-251-1/+1
| | | | | | | | | Specs were reviewed and improved to better cover the current behavior. There was some standardization done as well to facilitate the implementation of the rollback functionality. StorageMigratorWorker was extracted to HashedStorage namespace were RollbackerWorker will live one as well.