X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ad17f016de2feecc24a163af77c9c9c5add7dc3b..f9fa3a5e585a49b3673749bc235ad881707762b9:/services/api/app/controllers/arvados/v1/containers_controller.rb diff --git a/services/api/app/controllers/arvados/v1/containers_controller.rb b/services/api/app/controllers/arvados/v1/containers_controller.rb index b06d65a36c..13aa478d26 100644 --- a/services/api/app/controllers/arvados/v1/containers_controller.rb +++ b/services/api/app/controllers/arvados/v1/containers_controller.rb @@ -2,6 +2,8 @@ # # SPDX-License-Identifier: AGPL-3.0 +require 'update_priorities' + class Arvados::V1::ContainersController < ApplicationController accept_attribute_as_json :environment, Hash accept_attribute_as_json :mounts, Hash @@ -29,10 +31,18 @@ class Arvados::V1::ContainersController < ApplicationController end def update - # Lock containers table to avoid deadlock in cascading priority update (see #20240) - Container.transaction do - ActiveRecord::Base.connection.execute "LOCK TABLE containers IN EXCLUSIVE MODE" + if (resource_attrs.keys.map(&:to_sym) - [:cost, :gateway_address, :output_properties, :progress, :runtime_status]).empty? + # If no attributes are being updated besides these, there are no + # cascading changes to other rows/tables, the only lock will the + # single row lock on SQL UPDATE. super + else + Container.transaction do + # Get locks ahead of time to avoid deadlock in cascading priority + # update + row_lock_for_priority_update @object.uuid + super + end end end @@ -41,11 +51,16 @@ class Arvados::V1::ContainersController < ApplicationController if action_name == 'lock' || action_name == 'unlock' # Avoid loading more fields than we need @objects = @objects.select(:id, :uuid, :state, :priority, :auth_uuid, :locked_by_uuid, :lock_count) - @select = %w(uuid state priority auth_uuid locked_by_uuid) + # This gets called from within find_object_by_uuid. + # find_object_by_uuid stores the original value of @select in + # @preserve_select, edits the value of @select, calls + # find_objects_for_index, then restores @select from the value + # of @preserve_select. So if we want our updated value of + # @select here to stick, we have to set @preserve_select. + @select = @preserve_select = %w(uuid state priority auth_uuid locked_by_uuid) elsif action_name == 'update_priority' - # We're going to reload(lock: true) in the handler, which will - # select all attributes, but will fail if we don't select :id - # now. + # We're going to reload in update_priority!, which will select + # all attributes, but will fail if we don't select :id now. @objects = @objects.select(:id, :uuid) end end @@ -61,13 +76,8 @@ class Arvados::V1::ContainersController < ApplicationController end def update_priority - # Lock containers table to avoid deadlock in cascading priority update (see #20240) - Container.transaction do - ActiveRecord::Base.connection.execute "LOCK TABLE containers IN EXCLUSIVE MODE" - @object.reload(lock: true) - @object.update_priority! - show - end + @object.update_priority! + show end def current