Commit 511a7f11 authored by Gabriel Mazetto's avatar Gabriel Mazetto

Merge branch 'tag-build-finished-worker-as-using-nfs' into 'master'

Tag BuildFinishedWorker as using disk I/O

See merge request gitlab-org/gitlab!35134
parents e294d46a 372135d6
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
--- ---
- :name: authorized_project_update:authorized_project_update_project_create - :name: authorized_project_update:authorized_project_update_project_create
:feature_category: :authentication_and_authorization :feature_category: :authentication_and_authorization
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
:weight: 1 :weight: 1
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
:tags: [] :tags: []
- :name: authorized_project_update:authorized_project_update_project_group_link_create - :name: authorized_project_update:authorized_project_update_project_group_link_create
:feature_category: :authentication_and_authorization :feature_category: :authentication_and_authorization
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
:weight: 1 :weight: 1
...@@ -978,7 +978,8 @@ ...@@ -978,7 +978,8 @@
:resource_boundary: :cpu :resource_boundary: :cpu
:weight: 5 :weight: 5
:idempotent: :idempotent:
:tags: [] :tags:
- :requires_disk_io
- :name: pipeline_processing:build_queue - :name: pipeline_processing:build_queue
:feature_category: :continuous_integration :feature_category: :continuous_integration
:has_external_dependencies: :has_external_dependencies:
......
...@@ -7,6 +7,7 @@ class BuildFinishedWorker # rubocop:disable Scalability/IdempotentWorker ...@@ -7,6 +7,7 @@ class BuildFinishedWorker # rubocop:disable Scalability/IdempotentWorker
queue_namespace :pipeline_processing queue_namespace :pipeline_processing
urgency :high urgency :high
worker_resource_boundary :cpu worker_resource_boundary :cpu
tags :requires_disk_io
# rubocop: disable CodeReuse/ActiveRecord # rubocop: disable CodeReuse/ActiveRecord
def perform(build_id) def perform(build_id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment