-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Three variables need to be configured by the CBRAIN admin: GCLOUD_PROJECT=project_id GCLOUD_LOCATION=location GCLOUD_IMAGE_BASENAME=computeimagename These are normally set either at the bourreau level in the 'extra qsub arguments' field, or at the tool config level (also in the extra qesub arguments). They should be put together separated by spaces, e.g. GCLOUD_PROJECT=abcd GCLOUD_LOCATION=northamerica-northeast1-b
- Loading branch information
Showing
5 changed files
with
263 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../BrainPortal/lib/scir_gcloud_batch.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,257 @@ | ||
|
||
# | ||
# CBRAIN Project | ||
# | ||
# Copyright (C) 2008-2025 | ||
# The Royal Institution for the Advancement of Learning | ||
# McGill University | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
|
||
# This particular subclass of class Scir implements a simulated | ||
# cluster system on the Google Cloud Platform's Batch. | ||
class ScirGcloudBatch < Scir | ||
|
||
Revision_info=CbrainFileRevision[__FILE__] #:nodoc: | ||
|
||
class Session < Scir::Session #:nodoc: | ||
|
||
def update_job_info_cache #:nodoc: | ||
out_text, err_text = bash_this_and_capture_out_err( | ||
# the '%A' format returns the job ID | ||
# the '%t' format returns the status with the one or two letter codes. | ||
"gcloud batch jobs list --location #{gcloud_location()}" | ||
) | ||
raise "Cannot get output of 'squeue'" if err_text.present? | ||
out_lines = out_text.split("\n") | ||
@job_info_cache = {} | ||
#NAME LOCATION STATE | ||
#projects/tidal-reactor-438920-g4/locations/northamerica-northeast1/jobs/transcode northamerica-northeast1 FAILED | ||
#projects/tidal-reactor-438920-g4/locations/northamerica-northeast1/jobs/test3 northamerica-northeast1 SUCCEEDED | ||
#projects/tidal-reactor-438920-g4/locations/northamerica-northeast1/jobs/tr1 northamerica-northeast1 FAILED | ||
# In a real deploy, all jobs IDs will be 'cbrain-{task.id}-{task.run_number}' | ||
out_lines.each do |line| | ||
job_path, _, job_status = line.split(/\s+/) | ||
next unless job_path.present? && job_status.present? | ||
job_id = Pathname.new(job_path).basename.to_s | ||
state = statestring_to_stateconst(job_status) | ||
@job_info_cache[job_id] = { :drmaa_state => state } | ||
end | ||
true | ||
end | ||
|
||
def statestring_to_stateconst(state) #:nodoc: | ||
return Scir::STATE_RUNNING if state =~ /RUNNING/i | ||
return Scir::STATE_QUEUED_ACTIVE if state =~ /QUEUED/i | ||
return Scir::STATE_QUEUED_ACTIVE if state =~ /SCHEDULED/i | ||
return Scir::STATE_DONE if state =~ /COMPLETED/i | ||
return Scir::STATE_FAILED if state =~ /FAILED/i | ||
return Scir::STATE_UNDETERMINED | ||
end | ||
|
||
def hold(jid) #:nodoc: | ||
raise "There is no 'hold' action available for GCLOUD clusters" | ||
end | ||
|
||
def release(jid) #:nodoc: | ||
raise "There is no 'release' action available for GCLOUD clusters" | ||
end | ||
|
||
def suspend(jid) #:nodoc: | ||
raise "There is no 'suspend' action available for GCLOUD clusters" | ||
end | ||
|
||
def resume(jid) #:nodoc: | ||
raise "There is no 'resume' action available for GCLOUD clusters" | ||
end | ||
|
||
def terminate(jid) #:nodoc: | ||
IO.popen("gcloud batch jobs delete --location #{gcloud_location} #{shell_escape(jid)} 2>&1","r") { |i| i.read } | ||
#raise "Error deleting: #{out.join("\n")}" if whatever TODO | ||
return | ||
end | ||
|
||
def gcloud_location | ||
#TODO better | ||
"--location northamerica-northeast1" | ||
end | ||
|
||
def queue_tasks_tot_max #:nodoc: | ||
# Not Yet Implemented | ||
[ "unknown", "unknown" ] | ||
end | ||
|
||
private | ||
|
||
def qsubout_to_jid(txt) #:nodoc: | ||
struct = YAML.load(txt) | ||
fullname = struct['name'] # "projects/tidal-reactor-438920-g4/locations/northamerica-northeast1/jobs/cbrain-123-1-092332" | ||
Pathname.new(fullname).basename.to_s # cbrain-123-1-092332 | ||
rescue | ||
raise "Cannot find job ID from 'gcloud batch jobs submit' output. Text was blank" if txt.blank? | ||
File.open("/tmp/debug.submit_error.txt","a") { |fh| fh.write("\n----\n#{txt}") } | ||
raise "Cannot find job ID from 'gcloud batch jobs submit' output." | ||
end | ||
|
||
end | ||
|
||
class JobTemplate < Scir::JobTemplate #:nodoc: | ||
|
||
def gcloud_location | ||
get_config_value_from_extra_qsubs('GCLOUD_LOCATION') | ||
end | ||
|
||
def gcloud_compute_image_basename | ||
get_config_value_from_extra_qsubs('GCLOUD_IMAGE_BASENAME') | ||
end | ||
|
||
def gcloud_project | ||
get_config_value_from_extra_qsubs('GCLOUD_PROJECT') | ||
end | ||
|
||
# This method should not be overriden | ||
def full_compute_node_image_name | ||
"projects/#{gcloud_project}/global/images/#{gcloud_compute_image_basename}" | ||
end | ||
|
||
# The admin is expected to have configured three values | ||
# GCLOUD_PROJECT, GCLOUD_IMAGE_BASENAME and GCLOUD_LOCATION | ||
# either in the Bourreau or ToolConfig levels, within the | ||
# attribute known as 'extra_qsub_args'. The attributes | ||
# should be set with "NAME=VALUE" substrings, separated by blanks. | ||
# Values found at the ToolConfig level have priority. | ||
def get_config_value_from_extra_qsubs(varname) | ||
value = | ||
extract_config_value(varname, self.tc_extra_qsub_args ) || | ||
extract_config_value(varname, Scir.cbrain_config[:extra_qsub_args]) | ||
raise "Missing Gcloud configuration value for '#{varname}'. Add it in extra_qsub_args at the Bourreau or ToolConfig level as '#{varname}=value'" if value.blank? | ||
value | ||
end | ||
|
||
# Given a from_string like | ||
# "GCLOUD_PROJECT=abcde GCLOUD_IMAGE_BASENAME=baseim GCLOUD_LOCATION=westofhere" | ||
# and a varname like "GCLOUD_PROJECT", this method returns the value, "abcde". | ||
def extract_config_value(varname, from_string) | ||
return nil if from_string.blank? | ||
search_val = Regexp.new('\b' + Regexp.escape(varname) + '\s*=\s*(\w[\.\w-]+)', Regexp::IGNORECASE) | ||
return Regexp.last_match[1] if from_string.match(search_val) | ||
nil | ||
end | ||
|
||
def qsub_command #:nodoc: | ||
raise "Error, this class only handle 'command' as /bin/bash and a single script in 'arg'" unless | ||
self.command == "/bin/bash" && self.arg.size == 1 | ||
raise "Error: stdin not supported" if self.stdin | ||
raise "Error: name is required" if self.name.blank? | ||
raise "Error: name must be made of alphanums and dashes" if self.name !~ /\A[a-zA-Z][\w\-]*\w\z/ | ||
|
||
# The name is the job ID, so we need a distinct suffix even for the same task | ||
gname = self.name.downcase | ||
gname = gname[0..50] if gname.size > 50 | ||
gname = gname + DateTime.now.strftime("-%H%M%S") # this should be good enough | ||
|
||
command = "gcloud batch jobs submit #{gname} --location #{gcloud_location} " | ||
|
||
script_name = self.arg[0] | ||
script_command = "" | ||
script_command += "cd #{shell_escape(self.wd)} && " if self.wd.present? | ||
script_command += "bash #{shell_escape(script_name)} " | ||
script_command += "1> #{shell_escape(self.stdout.sub(/\A:/,""))} " if self.stdout.present? | ||
script_command += "2> #{shell_escape(self.stderr.sub(/\A:/,""))} " if self.stderr.present? | ||
|
||
# Wrapper around the command to switch UID, as normally | ||
# the stupid GoogleCloud batch engine starts everything as root | ||
script_command = "sudo -u #{CBRAIN::Rails_UserName.bash_escape} bash -c #{script_command.bash_escape}" | ||
|
||
walltime = self.walltime.presence || 600 # seconds | ||
memory = self.memory.presence || 2000 # mb | ||
|
||
json_config_text = json_cloud_batch_jobs_config( | ||
script_command, | ||
memory, | ||
walltime, | ||
full_compute_node_image_name, | ||
) | ||
|
||
# Write the json config to a file; use a name unique enough for the current submission, | ||
# bu we can crush at a later date too. Maybe use job name?!? | ||
pid_threadid = "#{Process.pid}-#{Thread.current.object_id}" | ||
json_tmp_config_file = "/tmp/job_submit-#{pid_threadid}.json" | ||
File.open(json_tmp_config_file,"w") { |fh| fh.write json_config_text } | ||
|
||
command += "--config #{json_tmp_config_file} 2>/dev/null && rm -f #{json_tmp_config_file}" # we must ignore the friendly message line in stderr | ||
|
||
return command | ||
end | ||
|
||
def json_cloud_batch_jobs_config(command, maxmem_mb, walltime_s, full_compute_node_image_name) | ||
struct = struct_gcloud_batch_jobs_config_template.dup | ||
|
||
task_spec = struct["taskGroups"][0]["taskSpec"] | ||
task_spec["runnables"][0]["script"]["text"] = command | ||
task_spec["computeResource"]["cpuMilli"] = 2000 # 1000 per core | ||
task_spec["computeResource"]["memoryMib"] = maxmem_mb | ||
task_spec["maxRunDuration"] = "#{walltime_s}s" | ||
|
||
policy = struct["allocationPolicy"]["instances"][0]["policy"] | ||
policy["bootDisk"]["image"] = full_compute_node_image_name | ||
|
||
struct.to_json | ||
end | ||
|
||
def struct_gcloud_batch_jobs_config_template | ||
@_cached_frozen_struct_ ||= | ||
{ | ||
"taskGroups" => [ | ||
{ | ||
"taskSpec" => { | ||
"runnables" => [ | ||
{ | ||
"script" => { | ||
"text" => "COMMAND_ON_NODE_HERE", | ||
} | ||
} | ||
], | ||
"computeResource" => { | ||
"cpuMilli" => 2000, | ||
"memoryMib" => 2048, | ||
}, | ||
"maxRetryCount" => 1, | ||
"maxRunDuration" => "WALLTIME_HERE", | ||
}, | ||
"taskCount" => 1, | ||
"parallelism" => 1 | ||
} | ||
], | ||
"allocationPolicy" => { | ||
"instances" => [ | ||
{ | ||
"policy" => { | ||
"bootDisk" => { | ||
"image" => "COMPUTE_NODE_IMAGE_NAME_HERE", | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"logsPolicy" => { | ||
"destination" => "CLOUD_LOGGING", | ||
} | ||
}.freeze | ||
end | ||
|
||
end # class JobTemplate | ||
|
||
end # class ScirGcloudBatch |