X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2c094e28cc4f19df4f6d0bc81355e7fc19e8c493..33021029867be4a2240f0d3673045dfac7598350:/services/api/app/models/node.rb?ds=sidebyside diff --git a/services/api/app/models/node.rb b/services/api/app/models/node.rb index 82ea0acbd6..148dffc230 100644 --- a/services/api/app/models/node.rb +++ b/services/api/app/models/node.rb @@ -1,11 +1,19 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'tempfile' class Node < ArvadosModel include HasUuid include KindAndEtag include CommonApiTemplate - serialize :info, Hash - serialize :properties, Hash + + # Posgresql JSONB columns should NOT be declared as serialized, Rails 5 + # already know how to properly treat them. + attribute :properties, :jsonbHash, default: {} + attribute :info, :jsonbHash, default: {} + before_validation :ensure_ping_secret after_update :dns_server_update @@ -102,25 +110,7 @@ class Node < ArvadosModel end end - # Assign slot_number - if self.slot_number.nil? - try_slot = 1 - begin - self.slot_number = try_slot - begin - self.save! - break - rescue ActiveRecord::RecordNotUnique - try_slot += 1 - end - raise "No available node slots" if try_slot == Rails.configuration.max_compute_nodes - end while true - end - - # Assign hostname - if self.hostname.nil? and Rails.configuration.assign_node_hostname - self.hostname = self.class.hostname_for_slot(self.slot_number) - end + assign_slot # Record other basic stats ['total_cpu_cores', 'total_ram_mb', 'total_scratch_mb'].each do |key| @@ -134,8 +124,45 @@ class Node < ArvadosModel save! end + def assign_slot + return if self.slot_number.andand > 0 + while true + self.slot_number = self.class.available_slot_number + if self.slot_number.nil? + raise "No available node slots" + end + begin + save! + return assign_hostname + rescue ActiveRecord::RecordNotUnique + # try again + end + end + end + protected + def assign_hostname + if self.hostname.nil? and Rails.configuration.assign_node_hostname + self.hostname = self.class.hostname_for_slot(self.slot_number) + end + end + + def self.available_slot_number + # Join the sequence 1..max with the nodes table. Return the first + # (i.e., smallest) value that doesn't match the slot_number of any + # existing node. + connection.exec_query('SELECT n FROM generate_series(1, $1) AS slot(n) + LEFT JOIN nodes ON n=slot_number + WHERE slot_number IS NULL + LIMIT 1', + # query label: + 'Node.available_slot_number', + # [col_id, val] for $1 vars: + [[nil, Rails.configuration.max_compute_nodes]], + ).rows.first.andand.first + end + def ensure_ping_secret self.info['ping_secret'] ||= rand(2**256).to_s(36) end