1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'whitelist_update'
6 require 'arvados/collection'
8 class ContainerRequest < ArvadosModel
9 include ArvadosModelUpdates
12 include CommonApiTemplate
13 include WhitelistUpdate
15 belongs_to :container, foreign_key: :container_uuid, primary_key: :uuid
16 belongs_to :requesting_container, {
17 class_name: 'Container',
18 foreign_key: :requesting_container_uuid,
22 # Posgresql JSONB columns should NOT be declared as serialized, Rails 5
23 # already know how to properly treat them.
24 attribute :properties, :jsonbHash, default: {}
25 attribute :secret_mounts, :jsonbHash, default: {}
26 attribute :output_storage_classes, :jsonbArray, default: lambda { Rails.configuration.DefaultStorageClasses }
27 attribute :output_properties, :jsonbHash, default: {}
29 serialize :environment, Hash
30 serialize :mounts, Hash
31 serialize :runtime_constraints, Hash
32 serialize :command, Array
33 serialize :scheduling_parameters, Hash
35 after_find :fill_container_defaults_after_find
36 after_initialize { @state_was_when_initialized = self.state_was } # see finalize_if_needed
37 before_validation :fill_field_defaults, :if => :new_record?
38 before_validation :fill_container_defaults
39 validates :command, :container_image, :output_path, :cwd, :presence => true
40 validates :output_ttl, numericality: { only_integer: true, greater_than_or_equal_to: 0 }
41 validates :priority, numericality: { only_integer: true, greater_than_or_equal_to: 0, less_than_or_equal_to: 1000 }
42 validate :validate_datatypes
43 validate :validate_runtime_constraints
44 validate :validate_scheduling_parameters
45 validate :validate_state_change
46 validate :check_update_whitelist
47 validate :secret_mounts_key_conflict
48 validate :validate_runtime_token
49 after_validation :scrub_secrets
50 after_validation :set_preemptible
51 after_validation :set_container
52 before_create :set_requesting_container_uuid
53 before_destroy :set_priority_zero
54 after_save :update_priority
55 after_save :finalize_if_needed
57 api_accessible :user, extend: :common do |t|
59 t.add :container_count
60 t.add :container_count_max
61 t.add :container_image
77 t.add :requesting_container_uuid
78 t.add :runtime_constraints
79 t.add :scheduling_parameters
82 t.add :output_storage_classes
83 t.add :output_properties
84 t.add :cumulative_cost
87 # Supported states for a container request
90 (Uncommitted = 'Uncommitted'),
91 (Committed = 'Committed'),
96 nil => [Uncommitted, Committed],
97 Uncommitted => [Committed],
101 AttrsPermittedAlways = [:owner_uuid, :state, :name, :description, :properties]
102 AttrsPermittedBeforeCommit = [:command, :container_count_max,
103 :container_image, :cwd, :environment, :filters, :mounts,
104 :output_path, :priority, :runtime_token,
105 :runtime_constraints, :state, :container_uuid, :use_existing,
106 :scheduling_parameters, :secret_mounts, :output_name, :output_ttl,
107 :output_storage_classes, :output_properties]
109 def self.any_preemptible_instances?
110 Rails.configuration.InstanceTypes.any? do |k, v|
115 def self.limit_index_columns_read
119 def logged_attributes
120 super.except('secret_mounts', 'runtime_token')
123 def state_transitions
127 def skip_uuid_read_permission_check
128 # The uuid_read_permission_check prevents users from making
129 # references to objects they can't view. However, in this case we
130 # don't want to do that check since there's a circular dependency
131 # where user can't view the container until the user has
132 # constructed the container request that references the container.
136 def finalize_if_needed
137 return if state != Committed
139 # get container lock first, then lock current container request
140 # (same order as Container#handle_completed). Locking always
141 # reloads the Container and ContainerRequest records.
142 c = Container.find_by_uuid(container_uuid)
146 if !c.nil? && container_uuid != c.uuid
147 # After locking, we've noticed a race, the container_uuid is
148 # different than the container record we just loaded. This
149 # can happen if Container#handle_completed scheduled a new
150 # container for retry and set container_uuid while we were
151 # waiting on the container lock. Restart the loop and get the
157 if state == Committed && c.final?
158 # The current container is
159 act_as_system_user do
160 leave_modified_by_user_alone do
165 elsif state == Committed
166 # Behave as if the container is cancelled
167 update_attributes!(state: Final)
173 # Finalize the container request after the container has
174 # finished/cancelled.
176 container = Container.find_by_uuid(container_uuid)
178 # We don't want to add the container cost if the container was
179 # already finished when this CR was committed. But we are
180 # running in an after_save hook after a lock/reload, so
181 # state_was has already been updated to Committed regardless.
182 # Hence the need for @state_was_when_initialized.
183 if @state_was_when_initialized == Committed
184 # Add the final container cost to our cumulative cost (which
185 # may already be non-zero from previous attempts if
186 # container_count_max > 1).
187 self.cumulative_cost += container.cost + container.subrequests_cost
190 # Add our cumulative cost to the subrequests_cost of the
191 # requesting container, if any.
192 if self.requesting_container_uuid
194 uuid: self.requesting_container_uuid,
195 state: Container::Running,
197 c.subrequests_cost += self.cumulative_cost
202 update_collections(container: container)
204 if container.state == Container::Complete
205 log_col = Collection.where(portable_data_hash: container.log).first
207 # Need to save collection
208 completed_coll = Collection.new(
209 owner_uuid: self.owner_uuid,
210 name: "Container log for container #{container_uuid}",
213 'container_request' => self.uuid,
214 'container_uuid' => container_uuid,
216 portable_data_hash: log_col.portable_data_hash,
217 manifest_text: log_col.manifest_text,
218 storage_classes_desired: self.output_storage_classes
220 completed_coll.save_with_unique_name!
224 update_attributes!(state: Final)
227 def update_collections(container:, collections: ['log', 'output'])
228 collections.each do |out_type|
229 pdh = container.send(out_type)
231 c = Collection.where(portable_data_hash: pdh).first
233 manifest = c.manifest_text
235 coll_name = "Container #{out_type} for request #{uuid}"
237 if out_type == 'output'
238 if self.output_name and self.output_name != ""
239 coll_name = self.output_name
241 if self.output_ttl > 0
242 trash_at = db_current_time + self.output_ttl
246 coll_uuid = self.send(out_type + '_uuid')
247 coll = coll_uuid.nil? ? nil : Collection.where(uuid: coll_uuid).first
249 coll = Collection.new(
250 owner_uuid: self.owner_uuid,
253 storage_classes_desired: self.output_storage_classes)
257 # Copy the log into a merged collection
258 src = Arv::Collection.new(manifest)
259 dst = Arv::Collection.new(coll.manifest_text)
260 dst.cp_r("./", ".", src)
261 dst.cp_r("./", "log for container #{container.uuid}", src)
262 manifest = dst.manifest_text
265 merged_properties = {}
266 merged_properties['container_request'] = uuid
268 if out_type == 'output' and !requesting_container_uuid.nil?
269 # output of a child process, give it "intermediate" type by
271 merged_properties['type'] = 'intermediate'
273 merged_properties['type'] = out_type
276 if out_type == "output"
277 merged_properties.update(container.output_properties)
278 merged_properties.update(self.output_properties)
281 coll.assign_attributes(
282 portable_data_hash: Digest::MD5.hexdigest(manifest) + '+' + manifest.bytesize.to_s,
283 manifest_text: manifest,
286 properties: merged_properties)
287 coll.save_with_unique_name!
288 self.send(out_type + '_uuid=', coll.uuid)
292 def self.full_text_searchable_columns
293 super - ["mounts", "secret_mounts", "secret_mounts_md5", "runtime_token", "output_storage_classes"]
298 def fill_field_defaults
299 self.state ||= Uncommitted
300 self.environment ||= {}
301 self.runtime_constraints ||= {}
303 self.secret_mounts ||= {}
305 self.container_count_max ||= Rails.configuration.Containers.MaxRetryAttempts
306 self.scheduling_parameters ||= {}
307 self.output_ttl ||= 0
312 if (container_uuid_changed? and
313 not current_user.andand.is_admin and
314 not container_uuid.nil?)
315 errors.add :container_uuid, "can only be updated to nil."
318 if self.container_count_changed?
319 errors.add :container_count, "cannot be updated directly."
322 if state_changed? and state == Committed and container_uuid.nil?
324 c = Container.resolve(self)
326 if c.state == Container::Cancelled
327 # Lost a race, we have a lock on the container but the
328 # container was cancelled in a different request, restart
329 # the loop and resolve request to a new container.
332 self.container_uuid = c.uuid
336 if self.container_uuid != self.container_uuid_was
337 self.container_count += 1
338 return if self.container_uuid_was.nil?
340 old_container = Container.find_by_uuid(self.container_uuid_was)
341 return if old_container.nil?
343 old_logs = Collection.where(portable_data_hash: old_container.log).first
344 return if old_logs.nil?
346 log_coll = self.log_uuid.nil? ? nil : Collection.where(uuid: self.log_uuid).first
347 if self.log_uuid.nil?
348 log_coll = Collection.new(
349 owner_uuid: self.owner_uuid,
350 name: coll_name = "Container log for request #{uuid}",
352 storage_classes_desired: self.output_storage_classes)
355 # copy logs from old container into CR's log collection
356 src = Arv::Collection.new(old_logs.manifest_text)
357 dst = Arv::Collection.new(log_coll.manifest_text)
358 dst.cp_r("./", "log for container #{old_container.uuid}", src)
359 manifest = dst.manifest_text
361 log_coll.assign_attributes(
362 portable_data_hash: Digest::MD5.hexdigest(manifest) + '+' + manifest.bytesize.to_s,
363 manifest_text: manifest)
364 log_coll.save_with_unique_name!
365 self.log_uuid = log_coll.uuid
370 if (new_record? || state_changed?) &&
371 state == Committed &&
372 Rails.configuration.Containers.AlwaysUsePreemptibleInstances &&
373 get_requesting_container_uuid() &&
374 self.class.any_preemptible_instances?
375 self.scheduling_parameters['preemptible'] = true
379 def validate_runtime_constraints
382 ['vcpus', 'ram'].each do |k|
383 v = runtime_constraints[k]
384 if !v.is_a?(Integer) || v <= 0
385 errors.add(:runtime_constraints,
386 "[#{k}]=#{v.inspect} must be a positive integer")
389 if runtime_constraints['cuda']
390 ['device_count'].each do |k|
391 v = runtime_constraints['cuda'][k]
392 if !v.is_a?(Integer) || v < 0
393 errors.add(:runtime_constraints,
394 "[cuda.#{k}]=#{v.inspect} must be a positive or zero integer")
397 ['driver_version', 'hardware_capability'].each do |k|
398 v = runtime_constraints['cuda'][k]
399 if !v.is_a?(String) || (runtime_constraints['cuda']['device_count'] > 0 && v.to_f == 0.0)
400 errors.add(:runtime_constraints,
401 "[cuda.#{k}]=#{v.inspect} must be a string in format 'X.Y'")
408 def validate_datatypes
411 errors.add(:command, "must be an array of strings but has entry #{c.class}")
414 environment.each do |k,v|
415 if !k.is_a?(String) || !v.is_a?(String)
416 errors.add(:environment, "must be an map of String to String but has entry #{k.class} to #{v.class}")
419 [:mounts, :secret_mounts].each do |m|
420 self[m].each do |k, v|
421 if !k.is_a?(String) || !v.is_a?(Hash)
422 errors.add(m, "must be an map of String to Hash but is has entry #{k.class} to #{v.class}")
425 errors.add(m, "each item must have a 'kind' field")
427 [[String, ["kind", "portable_data_hash", "uuid", "device_type",
428 "path", "commit", "repository_name", "git_url"]],
429 [Integer, ["capacity"]]].each do |t, fields|
431 if !v[f].nil? && !v[f].is_a?(t)
432 errors.add(m, "#{k}: #{f} must be a #{t} but is #{v[f].class}")
436 ["writable", "exclude_from_output"].each do |f|
437 if !v[f].nil? && !v[f].is_a?(TrueClass) && !v[f].is_a?(FalseClass)
438 errors.add(m, "#{k}: #{f} must be a #{t} but is #{v[f].class}")
445 def validate_scheduling_parameters
446 if self.state == Committed
447 if scheduling_parameters.include? 'partitions' and
448 (!scheduling_parameters['partitions'].is_a?(Array) ||
449 scheduling_parameters['partitions'].reject{|x| !x.is_a?(String)}.size !=
450 scheduling_parameters['partitions'].size)
451 errors.add :scheduling_parameters, "partitions must be an array of strings"
453 if scheduling_parameters['preemptible'] &&
454 (new_record? || state_changed?) &&
455 !self.class.any_preemptible_instances?
456 errors.add :scheduling_parameters, "preemptible instances are not configured in InstanceTypes"
458 if scheduling_parameters.include? 'max_run_time' and
459 (!scheduling_parameters['max_run_time'].is_a?(Integer) ||
460 scheduling_parameters['max_run_time'] < 0)
461 errors.add :scheduling_parameters, "max_run_time must be positive integer"
466 def check_update_whitelist
467 permitted = AttrsPermittedAlways.dup
469 if self.new_record? || self.state_was == Uncommitted
470 # Allow create-and-commit in a single operation.
471 permitted.push(*AttrsPermittedBeforeCommit)
472 elsif mounts_changed? && mounts_was.keys.sort == mounts.keys.sort
473 # Ignore the updated mounts if the only changes are default/zero
474 # values as added by controller, see 17774
476 mounts.each do |path, mount|
477 (mount.to_a - mounts_was[path].to_a).each do |k, v|
478 if ![0, "", false, nil].index(v)
479 only_defaults = false
484 clear_attribute_change("mounts")
490 permitted.push :priority, :container_count_max, :container_uuid, :cumulative_cost
492 if self.priority.nil?
493 self.errors.add :priority, "cannot be nil"
496 # Allow container count to increment (not by client, only by us
497 # -- see set_container)
498 permitted.push :container_count
500 if current_user.andand.is_admin
501 permitted.push :log_uuid
505 if self.state_was == Committed
506 # "Cancel" means setting priority=0, state=Committed
507 permitted.push :priority, :cumulative_cost
509 if current_user.andand.is_admin
510 permitted.push :output_uuid, :log_uuid
519 def secret_mounts_key_conflict
520 secret_mounts.each do |k, v|
521 if mounts.has_key?(k)
522 errors.add(:secret_mounts, 'conflict with non-secret mounts')
528 def validate_runtime_token
529 if !self.runtime_token.nil? && self.runtime_token_changed?
530 if !runtime_token[0..2] == "v2/"
531 errors.add :runtime_token, "not a v2 token"
534 if ApiClientAuthorization.validate(token: runtime_token).nil?
535 errors.add :runtime_token, "failed validation"
541 if self.state == Final
542 self.secret_mounts = {}
543 self.runtime_token = nil
548 return unless saved_change_to_state? || saved_change_to_priority? || saved_change_to_container_uuid?
549 act_as_system_user do
551 where('uuid in (?)', [container_uuid_before_last_save, self.container_uuid].compact).
552 map(&:update_priority!)
556 def set_priority_zero
557 self.update_attributes!(priority: 0) if self.state != Final
560 def set_requesting_container_uuid
561 if (self.requesting_container_uuid = get_requesting_container_uuid())
562 # Determine the priority of container request for the requesting
564 self.priority = ContainerRequest.where(container_uuid: self.requesting_container_uuid).maximum("priority") || 0
568 def get_requesting_container_uuid
569 return self.requesting_container_uuid || Container.for_current_token.andand.uuid