Class: OodCore::Job::Adapters::Torque::Batch
- Inherits:
-
Object
- Object
- OodCore::Job::Adapters::Torque::Batch
- Defined in:
- lib/ood_core/job/adapters/torque/batch.rb
Overview
Object used for simplified communication with a batch server
Defined Under Namespace
Classes: Error
Instance Attribute Summary collapse
-
#bin ⇒ Pathname
readonly
The path to the Torque client installation binaries.
-
#bin_overrides ⇒ Object
readonly
Optional overrides for Torque client executables.
-
#host ⇒ String
readonly
The host of the Torque batch server.
-
#lib ⇒ Pathname
readonly
The path to the Torque client installation libraries.
-
#strict_host_checking ⇒ Bool
readonly
Determines whether to use strict_host_checking for ssh.
-
#submit_host ⇒ String
readonly
The login node where job is submitted via ssh.
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
The comparison operator.
-
#connect {|cid| ... } ⇒ Object
Creates a connection to batch server and calls block in context of this connection.
-
#delete_job(id) ⇒ void
Delete a specified job from batch server.
-
#eql?(other) ⇒ Boolean
Checks whether two batch server objects are completely identical to each other.
-
#get_job(id, **kwargs) ⇒ Hash
Get info for given batch server’s job.
-
#get_jobs(id: '', filters: []) ⇒ Hash
Get a list of hashes of the jobs on the batch server.
-
#get_node(id, **kwargs) ⇒ Hash
Get info for given batch server’s node.
-
#get_nodes(id: '', filters: []) ⇒ Hash
Get a list of hashes of the nodes on the batch server.
-
#get_queue(id, **kwargs) ⇒ Hash
Get info for given batch server’s queue.
-
#get_queues(id: '', filters: []) ⇒ Hash
Get a list of hashes of the queues on the batch server.
-
#get_status(filters: []) ⇒ Hash
Get a hash with status info for this batch server.
-
#hash ⇒ Fixnum
Generates a hash value for this object.
-
#hold_job(id, type: :u) ⇒ void
Put specified job on hold Possible hold types: :u => Available to the owner of the job, the batch operator and the batch administrator :o => Available to the batch operator and the batch administrator :s => Available to the batch administrator.
-
#initialize(host:, submit_host: "", strict_host_checking: true, lib: "", bin: "", bin_overrides: {}, **_) ⇒ Batch
constructor
A new instance of Batch.
-
#release_job(id, type: :u) ⇒ void
Release a specified job that is on hold Possible hold types: :u => Available to the owner of the job, the batch operator and the batch administrator :o => Available to the batch operator and the batch administrator :s => Available to the batch administrator.
-
#select_jobs(attribs: []) ⇒ Hash
Get a list of hashes of the selected jobs on the batch server.
-
#submit(content, args: [], env: {}, chdir: nil) ⇒ String
Submit a script expanded as a string to the batch server.
-
#submit_script(script, queue: nil, headers: {}, resources: {}, envvars: {}, qsub: true) ⇒ String
deprecated
Deprecated.
Use #submit instead.
-
#submit_string(string, **kwargs) ⇒ String
deprecated
Deprecated.
Use #submit instead.
-
#to_h ⇒ Hash
Convert object to hash.
Constructor Details
#initialize(host:, submit_host: "", strict_host_checking: true, lib: "", bin: "", bin_overrides: {}, **_) ⇒ Batch
Returns a new instance of Batch.
53 54 55 56 57 58 59 60 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 53 def initialize(host:, submit_host: "", strict_host_checking: true, lib: "", bin: "", bin_overrides: {}, **_) @host = host.to_s @submit_host = submit_host.to_s @strict_host_checking = strict_host_checking @lib = Pathname.new(lib.to_s) @bin = Pathname.new(bin.to_s) @bin_overrides = bin_overrides end |
Instance Attribute Details
#bin ⇒ Pathname (readonly)
The path to the Torque client installation binaries
36 37 38 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 36 def bin @bin end |
#bin_overrides ⇒ Object (readonly)
Optional overrides for Torque client executables
42 43 44 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 42 def bin_overrides @bin_overrides end |
#host ⇒ String (readonly)
The host of the Torque batch server
12 13 14 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 12 def host @host end |
#lib ⇒ Pathname (readonly)
The path to the Torque client installation libraries
30 31 32 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 30 def lib @lib end |
#strict_host_checking ⇒ Bool (readonly)
Determines whether to use strict_host_checking for ssh
24 25 26 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 24 def strict_host_checking @strict_host_checking end |
#submit_host ⇒ String (readonly)
The login node where job is submitted via ssh
18 19 20 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 18 def submit_host @submit_host end |
Instance Method Details
#==(other) ⇒ Boolean
The comparison operator
71 72 73 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 71 def ==(other) to_h == other.to_h end |
#connect {|cid| ... } ⇒ Object
Creates a connection to batch server and calls block in context of this connection
93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 93 def connect(&block) FFI.lib = lib.join('libtorque.so') cid = FFI.pbs_connect(host) FFI.raise_error(cid.abs) if cid < 0 # raise error if negative connection id begin value = yield cid ensure FFI.pbs_disconnect(cid) # always close connection end FFI.check_for_error # check for errors at end value end |
#delete_job(id) ⇒ void
This method returns an undefined value.
Delete a specified job from batch server
322 323 324 325 326 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 322 def delete_job(id) connect do |cid| FFI.pbs_deljob cid, id.to_s, nil end end |
#eql?(other) ⇒ Boolean
Checks whether two batch server objects are completely identical to each other
79 80 81 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 79 def eql?(other) self.class == other.class && self == other end |
#get_job(id, **kwargs) ⇒ Hash
Get info for given batch server’s job
281 282 283 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 281 def get_job(id, **kwargs) get_jobs(id: id, **kwargs) end |
#get_jobs(id: '', filters: []) ⇒ Hash
Get a list of hashes of the jobs on the batch server
260 261 262 263 264 265 266 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 260 def get_jobs(id: '', filters: []) connect do |cid| filters = FFI::Attrl.from_list(filters) batch_status = FFI.pbs_statjob cid, id.to_s, filters, nil batch_status.to_h.tap { FFI.pbs_statfree batch_status } end end |
#get_node(id, **kwargs) ⇒ Hash
Get info for given batch server’s node
207 208 209 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 207 def get_node(id, **kwargs) get_nodes(id: id, **kwargs) end |
#get_nodes(id: '', filters: []) ⇒ Hash
Get a list of hashes of the nodes on the batch server
187 188 189 190 191 192 193 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 187 def get_nodes(id: '', filters: []) connect do |cid| filters = FFI::Attrl.from_list(filters) batch_status = FFI.pbs_statnode cid, id.to_s, filters, nil batch_status.to_h.tap { FFI.pbs_statfree batch_status } end end |
#get_queue(id, **kwargs) ⇒ Hash
Get info for given batch server’s queue
164 165 166 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 164 def get_queue(id, **kwargs) get_queues(id: id, **kwargs) end |
#get_queues(id: '', filters: []) ⇒ Hash
Get a list of hashes of the queues on the batch server
144 145 146 147 148 149 150 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 144 def get_queues(id: '', filters: []) connect do |cid| filters = FFI::Attrl.from_list(filters) batch_status = FFI.pbs_statque cid, id.to_s, filters, nil batch_status.to_h.tap { FFI.pbs_statfree batch_status } end end |
#get_status(filters: []) ⇒ Hash
Get a hash with status info for this batch server
118 119 120 121 122 123 124 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 118 def get_status(filters: []) connect do |cid| filters = FFI::Attrl.from_list filters batch_status = FFI.pbs_statserver cid, filters, nil batch_status.to_h.tap { FFI.pbs_statfree batch_status } end end |
#hash ⇒ Fixnum
Generates a hash value for this object
85 86 87 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 85 def hash [self.class, to_h].hash end |
#hold_job(id, type: :u) ⇒ void
This method returns an undefined value.
Put specified job on hold Possible hold types:
:u => Available to the owner of the job, the batch operator and the batch administrator
:o => Available to the batch operator and the batch administrator
:s => Available to the batch administrator
295 296 297 298 299 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 295 def hold_job(id, type: :u) connect do |cid| FFI.pbs_holdjob cid, id.to_s, type.to_s, nil end end |
#release_job(id, type: :u) ⇒ void
This method returns an undefined value.
Release a specified job that is on hold Possible hold types:
:u => Available to the owner of the job, the batch operator and the batch administrator
:o => Available to the batch operator and the batch administrator
:s => Available to the batch administrator
311 312 313 314 315 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 311 def release_job(id, type: :u) connect do |cid| FFI.pbs_rlsjob cid, id.to_s, type.to_s, nil end end |
#select_jobs(attribs: []) ⇒ Hash
Get a list of hashes of the selected jobs on the batch server
232 233 234 235 236 237 238 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 232 def select_jobs(attribs: []) connect do |cid| attribs = FFI::Attropl.from_list(attribs.map(&:to_h)) batch_status = FFI.pbs_selstat cid, attribs, nil batch_status.to_h.tap { FFI.pbs_statfree batch_status } end end |
#submit(content, args: [], env: {}, chdir: nil) ⇒ String
Submit a script expanded as a string to the batch server
376 377 378 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 376 def submit(content, args: [], env: {}, chdir: nil) call(:qsub, *args, env: env, stdin: content, chdir: chdir).strip end |
#submit_script(script, queue: nil, headers: {}, resources: {}, envvars: {}, qsub: true) ⇒ String
Use #submit instead.
Submit a script to the batch server
352 353 354 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 352 def submit_script(script, queue: nil, headers: {}, resources: {}, envvars: {}, qsub: true) send(qsub ? :qsub_submit : :pbs_submit, script.to_s, queue.to_s, headers, resources, envvars) end |
#submit_string(string, **kwargs) ⇒ String
Use #submit instead.
Submit a script expanded into a string to the batch server
361 362 363 364 365 366 367 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 361 def submit_string(string, **kwargs) Tempfile.open('qsub.') do |f| f.write string.to_s f.close submit_script(f.path, **kwargs) end end |
#to_h ⇒ Hash
Convert object to hash
64 65 66 |
# File 'lib/ood_core/job/adapters/torque/batch.rb', line 64 def to_h {host: host, submit_host: submit_host, strict_host_checking: strict_host_checking, lib: lib, bin: bin} end |