Class: Ci::Runner
- Inherits:
-
ApplicationRecord
show all
- Extended by:
- Gitlab::Utils::Override
- Includes:
- ChronicDurationAttribute, BulkInsertableTags, HasRunnerStatus, Taggable, EachBatch, FeatureGate, FromUnion, Gitlab::SQL::Pattern, Gitlab::Utils::StrongMemoize, Presentable, RedisCacheable, TokenAuthenticatable
- Defined in:
- app/models/ci/runner.rb
Constant Summary
collapse
- CREATED_RUNNER_TOKEN_PREFIX =
Prefix assigned to runners created from the UI, instead of registered via the command line
'glrt-'
- REGISTRATION_RUNNER_TOKEN_PREFIX =
'glrtr-'
- RUNNER_SHORT_SHA_LENGTH =
8
- ONLINE_CONTACT_TIMEOUT =
This ONLINE_CONTACT_TIMEOUT needs to be larger than
`RUNNER_QUEUE_EXPIRY_TIME+UPDATE_CONTACT_COLUMN_EVERY`
2.hours
- RUNNER_QUEUE_EXPIRY_TIME =
The RUNNER_QUEUE_EXPIRY_TIME indicates the longest interval that
Runner request needs to be refreshed by Rails instead of being handled
by Workhorse
1.hour
- UPDATE_CONTACT_COLUMN_EVERY =
The UPDATE_CONTACT_COLUMN_EVERY defines how often the Runner DB entry can be updated
((40.minutes)..(55.minutes))
- STALE_TIMEOUT =
The STALE_TIMEOUT constant defines the how far past the last contact or creation date a runner will be considered stale
7.days
- REGISTRATION_AVAILABILITY_TIME =
Only allow authentication token to be visible for a short while
1.hour
- AVAILABLE_TYPES_LEGACY =
%w[specific shared].freeze
- AVAILABLE_TYPES =
runner_types.keys.freeze
- DEPRECATED_STATUSES =
%w[active paused].freeze
- AVAILABLE_STATUSES =
%w[online offline never_contacted stale].freeze
- AVAILABLE_STATUSES_INCL_DEPRECATED =
(DEPRECATED_STATUSES + AVAILABLE_STATUSES).freeze
- AVAILABLE_SCOPES =
(AVAILABLE_TYPES_LEGACY + AVAILABLE_TYPES + AVAILABLE_STATUSES_INCL_DEPRECATED).freeze
- FORM_EDITABLE =
%i[description tag_list active run_untagged locked access_level maximum_timeout_human_readable].freeze
- MINUTES_COST_FACTOR_FIELDS =
%i[public_projects_minutes_cost_factor private_projects_minutes_cost_factor].freeze
- TAG_LIST_MAX_LENGTH =
50
RedisCacheable::CACHED_ATTRIBUTES_EXPIRY_TIME
Gitlab::SQL::Pattern::MIN_CHARS_FOR_PARTIAL_MATCHING, Gitlab::SQL::Pattern::REGEX_QUOTED_TERM
BulkInsertableTags::BULK_INSERT_TAG_THREAD_KEY
ApplicationRecord::MAX_PLUCK
HasCheckConstraints::NOT_NULL_CHECK_PATTERN
ResetOnColumnErrors::MAX_RESET_PERIOD
Class Method Summary
collapse
Instance Method Summary
collapse
extended, extensions, included, method_added, override, prepended, queue_verification, verify!
Methods included from Taggable
#reload, #tag_list, #tag_list=
#online?, #stale?, #status
#present
#flipper_id
#chronic_duration_attributes, #output_chronic_duration_attribute
#cache_attributes, #cached_attribute, #merge_cache_attributes
split_query_to_search_terms
#save_tags, with_bulk_insert_tags
model_name, table_name_prefix
===, cached_column_list, #create_or_load_association, current_transaction, declarative_enum, default_select_columns, delete_all_returning, #deleted_from_database?, id_in, id_not_in, iid_in, nullable_column?, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order
#sharding_organization
#reset_on_union_error, #reset_on_unknown_attribute_error
#serializable_hash
Class Method Details
.arel_tag_names_array ⇒ Object
327
328
329
330
331
332
|
# File 'app/models/ci/runner.rb', line 327
def self.arel_tag_names_array
taggings_join_model
.scoped_taggables
.joins(:tag)
.select('COALESCE(array_agg(tags.name ORDER BY tags.name), ARRAY[]::text[])')
end
|
.created_runner_prefix ⇒ Object
294
295
296
|
# File 'app/models/ci/runner.rb', line 294
def self.online_contact_time_deadline
ONLINE_CONTACT_TIMEOUT.ago
end
|
.order_by(order) ⇒ Object
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
|
# File 'app/models/ci/runner.rb', line 310
def self.order_by(order)
case order
when 'contacted_asc'
order_contacted_at_asc
when 'contacted_desc'
order_contacted_at_desc
when 'created_at_asc'
order_created_at_asc
when 'token_expires_at_asc'
order_token_expires_at_asc
when 'token_expires_at_desc'
order_token_expires_at_desc
else
order_created_at_desc
end
end
|
.recent_queue_deadline ⇒ Object
.runner_matchers ⇒ Object
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
# File 'app/models/ci/runner.rb', line 334
def self.runner_matchers
unique_params = [
:runner_type,
:public_projects_minutes_cost_factor,
:private_projects_minutes_cost_factor,
:run_untagged,
:access_level,
Arel.sql("(#{arel_tag_names_array.to_sql})"),
:allowed_plan_ids
]
group(*unique_params).pluck('array_agg(ci_runners.id)', *unique_params).map do |values|
Gitlab::Ci::Matching::RunnerMatcher.new({
runner_ids: values[0],
runner_type: values[1],
public_projects_minutes_cost_factor: values[2],
private_projects_minutes_cost_factor: values[3],
run_untagged: values[4],
access_level: values[5],
tag_list: values[6],
allowed_plan_ids: values[7]
})
end
end
|
.search(query) ⇒ Object
Searches for runners matching the given query.
This method uses ILIKE on PostgreSQL for the description field and performs a full match on tokens.
query - The search query as a String.
Returns an ActiveRecord::Relation.
290
291
292
|
# File 'app/models/ci/runner.rb', line 290
def self.search(query)
with_encrypted_tokens(encode(query)).or(fuzzy_search(query, [:description]))
end
|
.stale_deadline ⇒ Object
298
299
300
|
# File 'app/models/ci/runner.rb', line 298
def self.stale_deadline
STALE_TIMEOUT.ago
end
|
.taggings_join_model ⇒ Object
359
360
361
|
# File 'app/models/ci/runner.rb', line 359
def self.taggings_join_model
::Ci::RunnerTagging
end
|
Instance Method Details
#assign_to(project, current_user = nil) ⇒ Object
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
# File 'app/models/ci/runner.rb', line 381
def assign_to(project, current_user = nil)
if instance_type?
raise ArgumentError, 'Transitioning an instance runner to a project runner is not supported'
elsif group_type?
raise ArgumentError, 'Transitioning a group runner to a project runner is not supported'
end
if self.runner_projects.empty?
self.errors.add(:assign_to, 'Taking over an orphaned project runner is not allowed')
return false
end
begin
transaction do
self.runner_projects << ::Ci::RunnerProject.new(project: project, runner: self)
self.save!
end
rescue ActiveRecord::RecordInvalid => e
self.errors.add(:assign_to, e.message)
false
end
end
|
#belongs_to_more_than_one_project? ⇒ Boolean
440
441
442
|
# File 'app/models/ci/runner.rb', line 440
def belongs_to_more_than_one_project?
runner_projects.many?
end
|
#belongs_to_one_project? ⇒ Boolean
436
437
438
|
# File 'app/models/ci/runner.rb', line 436
def belongs_to_one_project?
runner_projects.one?
end
|
#compute_token_expiration ⇒ Object
551
552
553
554
555
556
557
558
559
560
|
# File 'app/models/ci/runner.rb', line 551
def compute_token_expiration
case runner_type
when 'instance_type'
compute_token_expiration_instance
when 'group_type'
compute_token_expiration_group
when 'project_type'
compute_token_expiration_project
end
end
|
#dedicated_gitlab_hosted? ⇒ Boolean
585
586
587
|
# File 'app/models/ci/runner.rb', line 585
def dedicated_gitlab_hosted?
false
end
|
#deprecated_rest_status ⇒ Object
412
413
414
415
416
417
418
419
420
421
422
|
# File 'app/models/ci/runner.rb', line 412
def deprecated_rest_status
return :stale if stale?
if contacted_at.nil?
:never_contacted
elsif active?
online? ? :online : :offline
else
:paused
end
end
|
#display_name ⇒ Object
404
405
406
407
408
|
# File 'app/models/ci/runner.rb', line 404
def display_name
return short_sha if description.blank?
description
end
|
#dot_com_gitlab_hosted? ⇒ Boolean
CI_JOB_JWT_V2 that uses this method is deprecated
On .com all instance runners are hosted so instance_type is used to distingish hosted from non-hosted
580
581
582
|
# File 'app/models/ci/runner.rb', line 580
def dot_com_gitlab_hosted?
Gitlab.com? && instance_type?
end
|
#ensure_manager(system_xid) ⇒ Object
562
563
564
565
566
567
568
569
|
# File 'app/models/ci/runner.rb', line 562
def ensure_manager(system_xid)
RunnerManager.safe_find_or_create_by!(runner_id: id, system_xid: system_xid.to_s) do |m|
m.runner_type = runner_type
m.organization_id = organization_id
end
end
|
#ensure_runner_queue_value ⇒ Object
477
478
479
|
# File 'app/models/ci/runner.rb', line 477
def has_tags?
tag_list.any?
end
|
#heartbeat(creation_state: nil) ⇒ Object
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
|
# File 'app/models/ci/runner.rb', line 517
def heartbeat(creation_state: nil)
::Gitlab::Database::LoadBalancing::SessionMap.current(load_balancer).without_sticky_writes do
values = { contacted_at: Time.current }
values[:creation_state] = creation_state if creation_state.present?
merge_cache_attributes(values)
update_columns(values) if persist_cached_data?
end
end
|
#match_build_if_online?(build) ⇒ Boolean
444
445
446
|
# File 'app/models/ci/runner.rb', line 444
def match_build_if_online?(build)
active? && online? && matches_build?(build)
end
|
#matches_build?(build) ⇒ Boolean
538
539
540
|
# File 'app/models/ci/runner.rb', line 538
def matches_build?(build)
runner_matcher.matches?(build.build_matcher)
end
|
#namespace_ids ⇒ Object
546
547
548
|
# File 'app/models/ci/runner.rb', line 546
def namespace_ids
runner_namespaces.pluck(:namespace_id).compact
end
|
#only_for?(project) ⇒ Boolean
448
449
450
|
# File 'app/models/ci/runner.rb', line 448
def only_for?(project)
runner_projects.where.not(project_id: project.id).empty?
end
|
#owner ⇒ Object
424
425
426
427
428
429
430
431
432
433
434
|
# File 'app/models/ci/runner.rb', line 424
def owner
case runner_type
when 'instance_type'
memoize_owner { ::User.find_by_id(creator_id) }
when 'group_type'
persisted? ? memoize_owner { owner_runner_namespace&.namespace } : runner_namespaces.first&.namespace
when 'project_type'
persisted? ? memoize_owner { owner_runner_project&.project } : runner_projects.first&.project
end
end
|
#partition_id ⇒ Object
589
590
591
|
# File 'app/models/ci/runner.rb', line 589
def partition_id
self.class.runner_types[runner_type]
end
|
#pick_build!(build) ⇒ Object
534
535
536
|
# File 'app/models/ci/runner.rb', line 534
def pick_build!(build)
tick_runner_queue if matches_build?(build)
end
|
#predefined_variables ⇒ Object
485
486
487
488
489
490
|
# File 'app/models/ci/runner.rb', line 485
def predefined_variables
Gitlab::Ci::Variables::Collection.new
.append(key: 'CI_RUNNER_ID', value: id.to_s)
.append(key: 'CI_RUNNER_DESCRIPTION', value: description)
.append(key: 'CI_RUNNER_TAGS', value: tag_list.to_a.to_s)
end
|
#registration_available? ⇒ Boolean
571
572
573
574
575
|
# File 'app/models/ci/runner.rb', line 571
def registration_available?
authenticated_user_registration_type? &&
created_at > REGISTRATION_AVAILABILITY_TIME.ago &&
creation_state == 'started' end
|
#runner_matcher ⇒ Object
367
368
369
370
371
372
373
374
375
376
377
378
|
# File 'app/models/ci/runner.rb', line 367
def runner_matcher
Gitlab::Ci::Matching::RunnerMatcher.new({
runner_ids: [id],
runner_type: runner_type,
public_projects_minutes_cost_factor: public_projects_minutes_cost_factor,
private_projects_minutes_cost_factor: private_projects_minutes_cost_factor,
run_untagged: run_untagged,
access_level: access_level,
tag_list: tag_list,
allowed_plan_ids: allowed_plan_ids
})
end
|
#runner_queue_value_latest?(value) ⇒ Boolean
513
514
515
|
# File 'app/models/ci/runner.rb', line 513
def runner_queue_value_latest?(value)
ensure_runner_queue_value == value if value.present?
end
|
#tagging_tag_ids ⇒ Object
481
482
483
|
# File 'app/models/ci/runner.rb', line 481
def tagging_tag_ids
taggings.pluck(:tag_id)
end
|
#tick_runner_queue ⇒ Object
492
493
494
495
496
497
498
499
500
501
502
503
504
505
|
# File 'app/models/ci/runner.rb', line 492
def tick_runner_queue
::Ci::Runner.sticking.stick(:runner, id)
SecureRandom.hex.tap do |new_update|
::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_update,
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: true)
end
end
|
542
543
544
|
# File 'app/models/ci/runner.rb', line 542
def uncached_contacted_at
read_attribute(:contacted_at)
end
|