summaryrefslogtreecommitdiff
path: root/app/services
Commit message (Collapse)AuthorAgeFilesLines
* Optimise build queue serviceoptimise-build-queue-serviceKamil Trzciński2019-08-221-0/+4
| | | | | | | | This makes BuildQueueService to force refresh runners that are considered to have recent queue. Such runners are the ones that connected within online interval + time to expire runner cache.
* Merge branch '65427-improve-system-notes-for-zoom-links' into 'master'Thong Kuah2019-08-211-2/+2
|\ | | | | | | | | | | | | Resolve "Improve system notes for Zoom links" Closes #65427 See merge request gitlab-org/gitlab-ce!31410
| * Improve system notes for Zoom links65427-improve-system-notes-for-zoom-linksJacopo2019-08-171-2/+2
| | | | | | | | | | | | | | changes: @user a Zoom call was added to this issue into: @user added a Zoom call to this issue Same concept appleis for "removed"
* | Fix pipelines not always being created after a pushsh-fix-pipelines-not-being-createdStan Hu2019-08-171-7/+12
| | | | | | | | | | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31741 introduced a regression where not all the right parameters would be passed into `Ci::CreatePipelineService`. We fix this by breaking out the pipeline parameters and reusing a method from `Gitlab::DataBuilder::Push`. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66196
* | Merge branch 'dm-process-commit-worker-n+1' into 'master'Stan Hu2019-08-161-2/+23
|\ \ | | | | | | | | | | | | | | | | | | Look up upstream commits once before queuing ProcessCommitWorkers Closes #65464 See merge request gitlab-org/gitlab-ce!31871
| * | Look up upstream commits once before queuing ProcessCommitWorkersDouwe Maan2019-08-161-2/+23
| | | | | | | | | | | | | | | | | | | | | | | | Instead of checking if a commit already exists in the upstream project in its ProcessCommitWorker and bailing out if it does, we check the existence of all commits in bulk in Git::BranchHooksService, so that we can skip scheduling ProcessCommitWorker jobs for those commits that already exist upstream entirely.
* | | Expire project caches once per push instead of once per refStan Hu2019-08-161-7/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously `ProjectCacheWorker` would be scheduled once per ref, which would generate unnecessary I/O and load on Sidekiq, especially if many tags or branches were pushed at once. `ProjectCacheWorker` would expire three items: 1. Repository size: This only needs to be updated once per push. 2. Commit count: This only needs to be updated if the default branch is updated. 3. Project method caches: This only needs to be updated if the default branch changes, but only if certain files change (e.g. README, CHANGELOG, etc.). Because the third item requires looking at the actual changes in the commit deltas, we schedule one `ProjectCacheWorker` to handle the first two cases, and schedule a separate `ProjectCacheWorker` for the third case if it is needed. As a result, this brings down the number of `ProjectCacheWorker` jobs from N to 2. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52046
* | | Merge branch 'enable-dag-support-by-default' into 'master'Kamil Trzciński2019-08-161-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Enable DAG support by default Closes #65457 See merge request gitlab-org/gitlab-ce!31814
| * | | Enable DAG support by defaultenable-dag-support-by-defaultKamil Trzciński2019-08-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | This toggles the ci_dag_support flag to be on by default. This relies on ci_dag_limit_needs to be present to reduce amount of inter-dependencies between jobs
* | | | Only read rebase status from the modelNick Thomas2019-08-151-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to 12.1, rebase status was looked up directly from Gitaly. In https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14417 , a DB column was added to track the status instead. However, we couldn't stop looking at the gitaly status immediately, since some rebases may been running across the upgrade. Now that we're in 12.3, it is safe to remove the direct-to-gitaly lookup. This also happens to fix a 500 error that is seen when viewing an MR for a fork where the source project has been removed. We still look at the Gitaly status in the service, just in case Gitaly and Sidekiq get out of sync - I assume this is possible, and it's a relatively cheap check. Since we atomically check and set `merge_requests.rebase_jid`, we should never enqueue two `RebaseWorker` jobs in parallel.
* | | | Allow disabling group/project email notificationsBrett Walker2019-08-153-2/+25
| |_|/ |/| | | | | | | | | | | | | | - Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
* | | Merge branch 'sh-optimize-commit-deltas-post-receive' into 'master'Nick Thomas2019-08-141-12/+33
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Reduce Gitaly calls in PostReceive Closes #65878 See merge request gitlab-org/gitlab-ce!31741
| * | | Reduce Gitaly calls in PostReceivesh-optimize-commit-deltas-post-receiveStan Hu2019-08-121-12/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit reduces I/O load and memory utilization during PostReceive for the common case when no project hooks or services are set up. We saw a Gitaly N+1 issue in `CommitDelta` when many tags or branches are pushed. We can reduce this overhead in the common case because we observe that most new projects do not have any Web hooks or services, especially when they are first created. Previously, `BaseHooksService` unconditionally iterated through the last 20 commits of each ref to build the `push_data` structure. The `push_data` structured was used in numerous places: 1. Building the push payload in `EventCreateService` 2. Creating a CI pipeline 3. Executing project Web or system hooks 4. Executing project services 5. As the return value of `BaseHooksService#execute` 6. `BranchHooksService#invalidated_file_types` We only need to generate the full `push_data` for items 3, 4, and 6. Item 1: `EventCreateService` only needs the last commit and doesn't actually need the commit deltas. Item 2: In addition, `Ci::CreatePipelineService` only needed a subset of the parameters. Item 5: The return value of `BaseHooksService#execute` also wasn't being used anywhere. Item 6: This is only used when pushing to the default branch, so if many tags are pushed we can save significant I/O here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65878 Fic
* | | | Merge branch 'optimise-dag-processing' into 'master'Grzegorz Bizon2019-08-141-14/+13
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | Optimise dag processing See merge request gitlab-org/gitlab-ce!31768
| * | | Optimise DAG processingoptimise-dag-processingKamil Trzciński2019-08-141-14/+13
| |/ /
* | | Merge branch 'expand-variables-only-when-needed' into 'master'Stan Hu2019-08-131-1/+1
|\ \ \ | | | | | | | | | | | | | | | | Expand variables only when needed See merge request gitlab-org/gitlab-ce!31772
| * | | Expand variables only when neededKamil Trzciński2019-08-131-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | This makes us to expand variables only when needed, instead of requesting all variables each time. This specifically helps in situation when explicit name of `environment: production` is used.
* | | Rework retry strategy for remote mirrorsBob Van Landuyt2019-08-131-16/+37
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | **Prevention of running 2 simultaneous updates** Instead of using `RemoteMirror#update_status` and raise an error if it's already running to prevent the same mirror being updated at the same time we now use `Gitlab::ExclusiveLease` for that. When we fail to obtain a lease in 3 tries, 30 seconds apart, we bail and reschedule. We'll reschedule faster for the protected branches. If the mirror already ran since it was scheduled, the job will be skipped. **Error handling: Remote side** When an update fails because of a `Gitlab::Git::CommandError`, we won't track this error in sentry, this could be on the remote side: for example when branches have diverged. In this case, we'll try 3 times scheduled 1 or 5 minutes apart. In between, the mirror is marked as "to_retry", the error would be visible to the user when they visit the settings page. After 3 tries we'll mark the mirror as failed and notify the user. We won't track this error in sentry, as it's not likely we can help it. The next event that would trigger a new refresh. **Error handling: our side** If an unexpected error occurs, we mark the mirror as failed, but we'd still retry the job based on the regular sidekiq retries with backoff. Same as we used to The error would be reported in sentry, since its likely we need to do something about it.
* | Merge branch '65803-invalidate-branches-cache-on-refresh' into 'master'Bob Van Landuyt2019-08-131-2/+2
|\ \ | |/ |/| | | | | Only expire branch cache once per push See merge request gitlab-org/gitlab-ce!31653
| * Invalidate branches cache on PostReceivePatrick Bajao2019-08-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Whenever `PostReceive` is enqueued, `UpdateMergeRequestsWorker` is enqueued and `MergeRequests::RefreshService` is called, it'll check if the source branch of each MR asssociated to the push exists or not via `MergeRequest#source_branch_exists?`. The said method will call `Repository#branch_exists?` which is cached in `Rails.cache`. When the cache contains outdated data and the source branch actually exists, the `MergeRequests#RefreshService` job will close associated MRs which is not correct. The fix is to expire the branches cache of the project so we have updated data during the post receive hook which will help in the accuracy of the check if we need to close associated MRs or not.
* | Improve quick action error messagesHeinrich Lee Yu2019-08-131-1/+1
| | | | | | | | Standardize punctuation and format
* | Merge branch 'alipniagov-fix-wiki_can_not_be_created_total-counter' into ↵Thong Kuah2019-08-121-1/+1
|\ \ | | | | | | | | | | | | | | | | | | 'master' Fix :wiki_can_not_be_created_total counter See merge request gitlab-org/gitlab-ce!31673
| * | Fix :wiki_can_not_be_created_total counteralipniagov-fix-wiki_can_not_be_created_total-counterAleksei Lipniagov2019-08-091-1/+1
| |/
* | Merge branch 'app-differences' into 'master'Rémy Coutable2019-08-091-1/+3
|\ \ | |/ |/| | | | | Backport EE changes to Members::BaseService See merge request gitlab-org/gitlab-ce!31581
| * Backport EE changes to Members::BaseServiceapp-differencesYorick Peterse2019-08-081-1/+3
| | | | | | | | | | EE made some small changes to this class, but these changes were not backported to CE.
* | Record usage on snippet usageMark Chao2019-08-084-1/+9
|/ | | | Generalize wiki page counter for other page types to extend to.
* CE port for bulk updating group labelsEugenia Grieff2019-08-081-1/+1
| | | | - Original EE MR: https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14827
* Save instance administration project id in DBReuben Pereira2019-08-071-19/+86
| | | | | - This will make it easy to identify the project even if admins change the name of the project or move it.
* Support dashboard params for metrics dashboardSarah Yasonik2019-08-075-14/+248
| | | | | | | | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/issues/62971 Adds support to EnvironmentsController#metrics_dashboard for the following params: group, title, y_label These params are used to uniquely identify a panel on the metrics dashboard. Metrics are stored in several places, so this adds utilities to find a specific panel from the database or filesystem depending on the metric specified. Also moves some shared utilities into separate classes, notably default values and errors.
* Merge branch 'sh-disable-registry-delete' into 'master'Thong Kuah2019-08-071-0/+1
|\ | | | | | | | | Don't attempt to contact registry if it is disabled See merge request gitlab-org/gitlab-ce!31553
| * Don't attempt to contact registry if it is disabledsh-disable-registry-deleteStan Hu2019-08-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/21679 moved the deletion of registry tags outside of a transaction, but introduced an issue where Sidekiq would attempt to contact the container registry during project destruction even if it were disabled. Relates to: * https://gitlab.com/charts/gitlab/issues/1455 * https://gitlab.com/gitlab-org/gitlab-ce/issues/45941
* | Use separate Kubernetes namespaces per environmentTiger Watson2019-08-073-6/+41
| | | | | | | | | | | | | | | | | | | | | | | | Kubernetes deployments on new clusters will now have a separate namespace per project environment, instead of sharing a single namespace for the project. Behaviour of existing clusters is unchanged. All new functionality is controlled by the :kubernetes_namespace_per_environment feature flag, which is safe to enable/disable at any time.
* | Convert RestClient to Gitlab::HTTP for Prometheus MonitorDavid Wilkins2019-08-071-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | - Closes #60024 - Change PrometheusClient.new to accept a base url instead of an already created RestClient - Use Gitlab::HTTP in PrometheusClient instead of creating RestClient in PrometheusService - Move http_options from PrometheusService to PrometheusClient (follow_redirects: false) - ensure that base urls don't have the trailing slash - Created a `PrometheusClient#url` method that might not be strictly required - Change rescued exceptions from RestClient::* to HTTParty::ResponseError where possible and StandardError for the rest
* Merge branch 'prefer-to-use-process-pipeline-worker' into 'master'Sean McGivern2019-08-051-5/+11
|\ | | | | | | | | Extend PipelineProcessWorker to accept a list of builds See merge request gitlab-org/gitlab-ce!31425
| * Extend PipelineProcessWorker to accept a list of buildsprefer-to-use-process-pipeline-workerKamil Trzciński2019-08-021-5/+11
| | | | | | | | | | | | | | This changes used worker from `BuildProcessWorker` to `PipelineProcessWorker` to make pipeline processing much simpler. We process `pipeline_id`, based on some triggers.
* | Merge branch 'georgekoltsov/55474-outbound-setting-system-hooks' into 'master'Rémy Coutable2019-08-051-2/+4
|\ \ | | | | | | | | | | | | Add outbound setting for system hooks See merge request gitlab-org/gitlab-ce!31177
| * | Add outbound requests setting for system hooksGeorge Koltsov2019-08-021-2/+4
| |/ | | | | | | | | | | | | This MR adds new application setting to network section `allow_local_requests_from_system_hooks`. Prior to this change system hooks were allowed to do local network requests by default and we are adding an ability for admins to control it.
* | Properly process `needs:` with `when:`properly-process-all-needsKamil Trzciński2019-08-021-17/+29
|/ | | | | | | | | | Currently, some of the jobs with `needs:` would be processed in stages, it means that `when:` for such jobs would not be respected. This changes the behavior to have a separate execution paths for jobs with `needs:`.
* Merge branch 'ce-docker_image_replication' into 'master'Douglas Barbosa Alexandre2019-08-011-1/+9
|\ | | | | | | | | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3809 See merge request gitlab-org/gitlab-ce!31375
| * Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3809ce-docker_image_replicationValery Sizov2019-08-011-1/+9
| | | | | | | | Introducing Docker Registry replication
* | Merge branch 'osw-avoid-errors-due-to-concurrent-calls' into 'master'Douwe Maan2019-08-011-3/+42
|\ \ | | | | | | | | | | | | Add exclusive lease to mergeability check process See merge request gitlab-org/gitlab-ce!31082
| * | Add exclusive lease to mergeability check processosw-avoid-errors-due-to-concurrent-callsOswaldo Ferreira2019-07-311-3/+42
| | | | | | | | | | | | | | | | | | | | | | | | Concurrent calls to UserMergeToRef RPC updating a single ref can lead to an opaque fail that is being rescued at Gitaly. So this commit adds an exclusive lease to the mergeability check process with the key as the current MR ID.
* | | Add support for DAGKamil Trzciński2019-08-012-5/+37
| |/ |/| | | | | | | | | This implements the support for `needs:` keyword as part of GitLab CI. That makes some of the jobs to be run out of order.
* | Add prometheus listen address to whitelistReuben Pereira2019-07-312-6/+35
| | | | | | | | | | | | - Add to whitelist so that even if local requests from hooks and services are not allowed, the prometheus manual configuration will still succeed.
* | Ensure default metrics embed is cachedSarah Yasonik2019-07-311-1/+1
|/
* Ignore Gitaly errors if cache flushing fails on project destructionStan Hu2019-07-291-2/+11
| | | | | | | We should just ignore these errors and move along with the deletion since the repositories are going to be trashed anyway. Closes https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31164
* Merge branch ↵Robert Speicher2019-07-294-0/+53
|\ | | | | | | | | | | | | | | | | '63547-add-system-notes-for-when-a-zoom-call-was-added-removed-from-an-issue' into 'master' Resolve "Add system notes for when a zoom call was added/removed from an issue" Closes #63547 See merge request gitlab-org/gitlab-ce!30857
| * Add system notes for when a zoom call was added/removed from an issue63547-add-system-notes-for-when-a-zoom-call-was-added-removed-from-an-issueJacopo2019-07-294-0/+53
| | | | | | | | | | Add a zoom link added / removed system note when a zoom link is being added / removed to the issue description.
* | Move BaseService to Services directorySarah Yasonik2019-07-294-0/+228
| | | | | | | | | | | | | | | | In preparation for embedding specific metrics in issues https://gitlab.com/gitlab-org/gitlab-ce/issues/62971, this commit moves the BaseService for metrics dashboards to a new services subdirectory. This is purely for the sake of organization and maintainability.
* | Make quick action "commands applied" banner more useful🙈 jacopo beschi 🙉2019-07-292-8/+27
| | | | | | | | | | Extends the quick actions "commands applied" banner to show the quick action preview text, but with everything in past tense.