7 %w{TERM INT}.each do |sig|
10 $stderr.puts "Received #{signame} signal"
15 if ENV["CRUNCH_DISPATCH_LOCKFILE"]
16 lockfilename = ENV.delete "CRUNCH_DISPATCH_LOCKFILE"
17 lockfile = File.open(lockfilename, File::RDWR|File::CREAT, 0644)
18 unless lockfile.flock File::LOCK_EX|File::LOCK_NB
19 abort "Lock unavailable on #{lockfilename} - exit"
23 ENV["RAILS_ENV"] = ARGV[0] || ENV["RAILS_ENV"] || "development"
25 require File.dirname(__FILE__) + '/../config/boot'
26 require File.dirname(__FILE__) + '/../config/environment'
29 LOG_BUFFER_SIZE = 4096
32 include ApplicationHelper
35 return act_as_system_user
39 @todo = Job.queue.select do |j| j.repository end
40 @todo_pipelines = PipelineInstance.queue
44 @@slurm_version ||= Gem::Version.new(`sinfo --version`.match(/\b[\d\.]+\b/)[0])
45 if Gem::Version.new('2.3') <= @@slurm_version
46 `sinfo --noheader -o '%n:%t'`.strip
48 # Expand rows with hostname ranges (like "foo[1-3,5,9-12]:idle")
49 # into multiple rows with one hostname each.
50 `sinfo --noheader -o '%N:%t'`.split("\n").collect do |line|
51 tokens = line.split ":"
52 if (re = tokens[0].match /^(.*?)\[([-,\d]+)\]$/)
53 re[2].split(",").collect do |range|
54 range = range.split("-").collect(&:to_i)
55 (range[0]..range[-1]).collect do |n|
56 [re[1] + n.to_s, tokens[1..-1]].join ":"
66 def update_node_status
67 if Server::Application.config.crunch_job_wrapper.to_s.match /^slurm/
68 @nodes_in_state = {idle: 0, alloc: 0, down: 0}
74 re = line.match /(\S+?):+(idle|alloc|down)/
77 # sinfo tells us about a node N times if it is shared by N partitions
78 next if node_seen[re[1]]
79 node_seen[re[1]] = true
81 # count nodes in each state
82 @nodes_in_state[re[2].to_sym] += 1
84 # update our database (and cache) when a node's state changes
85 if @node_state[re[1]] != re[2]
86 @node_state[re[1]] = re[2]
87 node = Node.where('hostname=?', re[1]).first
89 $stderr.puts "dispatch: update #{re[1]} state to #{re[2]}"
90 node.info[:slurm_state] = re[2]
93 $stderr.puts "dispatch: sinfo reports '#{re[1]}' is not down, but no node has that name"
107 if job.runtime_constraints['min_nodes']
108 min_nodes = begin job.runtime_constraints['min_nodes'].to_i rescue 1 end
113 next if @nodes_in_state[:idle] < min_nodes
117 next if @running[job.uuid]
121 case Server::Application.config.crunch_job_wrapper
124 when :slurm_immediate
125 cmd_args = ["salloc",
130 "--job-name=#{job.uuid}",
131 "--nodes=#{min_nodes}"]
133 raise "Unknown crunch_job_wrapper: #{Server::Application.config.crunch_job_wrapper}"
136 if Server::Application.config.crunch_job_user
137 cmd_args.unshift("sudo", "-E", "-u",
138 Server::Application.config.crunch_job_user,
139 "PATH=#{ENV['PATH']}",
140 "PERLLIB=#{ENV['PERLLIB']}",
141 "PYTHONPATH=#{ENV['PYTHONPATH']}",
142 "RUBYLIB=#{ENV['RUBYLIB']}",
143 "GEM_PATH=#{ENV['GEM_PATH']}")
146 job_auth = ApiClientAuthorization.
147 new(user: User.where('uuid=?', job.modified_by_user_uuid).first,
151 crunch_job_bin = (ENV['CRUNCH_JOB_BIN'] || `which arv-crunch-job`.strip)
152 if crunch_job_bin == ''
153 raise "No CRUNCH_JOB_BIN env var, and crunch-job not in path."
158 arvados_internal = Rails.configuration.git_internal_dir
159 if not File.exists? arvados_internal
160 $stderr.puts `mkdir -p #{arvados_internal.shellescape} && cd #{arvados_internal.shellescape} && git init --bare`
163 src_repo = File.join(Rails.configuration.git_repositories_dir, job.repository + '.git')
164 src_repo = File.join(Rails.configuration.git_repositories_dir, job.repository, '.git') unless File.exists? src_repo
167 $stderr.puts "dispatch: #{File.join Rails.configuration.git_repositories_dir, job.repository} doesn't exist"
173 $stderr.puts `cd #{arvados_internal.shellescape} && git fetch --no-tags #{src_repo.shellescape} && git tag #{job.uuid.shellescape} #{job.script_version.shellescape}`
175 cmd_args << crunch_job_bin
176 cmd_args << '--job-api-token'
177 cmd_args << job_auth.api_token
180 cmd_args << '--git-dir'
181 cmd_args << arvados_internal
183 $stderr.puts "dispatch: #{cmd_args.join ' '}"
186 i, o, e, t = Open3.popen3(*cmd_args)
188 $stderr.puts "dispatch: popen3: #{$!}"
194 $stderr.puts "dispatch: job #{job.uuid}"
195 start_banner = "dispatch: child #{t.pid} start #{Time.now.ctime.to_s}"
196 $stderr.puts start_banner
198 @running[job.uuid] = {
208 stderr_buf_to_flush: '',
216 # no-op -- let crunch-job take care of locking.
221 # no-op -- let crunch-job take care of locking.
226 @running.each do |job_uuid, j|
229 # Throw away child stdout
231 j[:stdout].read_nonblock(2**20)
232 rescue Errno::EAGAIN, EOFError
235 # Read whatever is available from child stderr
238 stderr_buf = j[:stderr].read_nonblock(2**20)
239 rescue Errno::EAGAIN, EOFError
243 j[:stderr_buf] << stderr_buf
244 if j[:stderr_buf].index "\n"
245 lines = j[:stderr_buf].lines("\n").to_a
246 if j[:stderr_buf][-1] == "\n"
249 j[:stderr_buf] = lines.pop
252 $stderr.print "#{job_uuid} ! " unless line.index(job_uuid)
254 pub_msg = "#{Time.now.ctime.to_s} #{line.strip} \n"
255 j[:stderr_buf_to_flush] << pub_msg
258 if (LOG_BUFFER_SIZE < j[:stderr_buf_to_flush].size) || ((j[:stderr_flushed_at]+1) < Time.now.to_i)
267 return if 0 == @running.size
273 pid_done = waitpid(-1, Process::WNOHANG | Process::WUNTRACED)
275 j_done = @running.values.
276 select { |j| j[:wait_thr].pid == pid_done }.
279 rescue SystemCallError
280 # I have @running processes but system reports I have no
281 # children. This is likely to happen repeatedly if it happens at
282 # all; I will log this no more than once per child process I
284 if 0 < @running.select { |uuid,j| j[:warned_waitpid_error].nil? }.size
285 children = @running.values.collect { |j| j[:wait_thr].pid }.join ' '
286 $stderr.puts "dispatch: IPC bug: waitpid() error (#{$!}), but I have children #{children}"
288 @running.each do |uuid,j| j[:warned_waitpid_error] = true end
291 @running.each do |uuid, j|
292 if j[:wait_thr].status == false
293 pid_done = j[:wait_thr].pid
301 job_done = j_done[:job]
302 $stderr.puts "dispatch: child #{pid_done} exit"
303 $stderr.puts "dispatch: job #{job_done.uuid} end"
305 # Ensure every last drop of stdout and stderr is consumed
307 write_log j_done # write any remaining logs
309 if j_done[:stderr_buf] and j_done[:stderr_buf] != ''
310 $stderr.puts j_done[:stderr_buf] + "\n"
314 j_done[:wait_thr].value
316 jobrecord = Job.find_by_uuid(job_done.uuid)
317 if jobrecord.started_at
318 # Clean up state fields in case crunch-job exited without
319 # putting the job in a suitable "finished" state.
320 jobrecord.running = false
321 jobrecord.finished_at ||= Time.now
322 if jobrecord.success.nil?
323 jobrecord.success = false
327 # Don't fail the job if crunch-job didn't even get as far as
328 # starting it. If the job failed to run due to an infrastructure
329 # issue with crunch-job or slurm, we want the job to stay in the
333 # Invalidate the per-job auth token
334 j_done[:job_auth].update_attributes expires_at: Time.now
336 @running.delete job_done.uuid
340 expire_tokens = @pipe_auth_tokens.dup
341 @todo_pipelines.each do |p|
342 pipe_auth = (@pipe_auth_tokens[p.uuid] ||= ApiClientAuthorization.
343 create(user: User.where('uuid=?', p.modified_by_user_uuid).first,
345 puts `export ARVADOS_API_TOKEN=#{pipe_auth.api_token} && arv-run-pipeline-instance --run-here --no-wait --instance #{p.uuid}`
346 expire_tokens.delete p.uuid
349 expire_tokens.each do |k, v|
350 v.update_attributes expires_at: Time.now
351 @pipe_auth_tokens.delete k
358 @pipe_auth_tokens ||= { }
359 $stderr.puts "dispatch: ready"
360 while !$signal[:term] or @running.size > 0
363 @running.each do |uuid, j|
364 if !j[:started] and j[:sent_int] < 2
366 Process.kill 'INT', j[:wait_thr].pid
368 # No such pid = race condition + desired result is
375 refresh_todo unless did_recently(:refresh_todo, 1.0)
377 unless @todo.empty? or did_recently(:start_jobs, 1.0) or $signal[:term]
380 unless (@todo_pipelines.empty? and @pipe_auth_tokens.empty?) or did_recently(:update_pipelines, 5.0)
385 select(@running.values.collect { |j| [j[:stdout], j[:stderr]] }.flatten,
392 def did_recently(thing, min_interval)
394 if !@did_recently[thing] or @did_recently[thing] < Time.now - min_interval
395 @did_recently[thing] = Time.now
402 # send message to log table. we want these records to be transient
403 def write_log running_job
405 if (running_job && running_job[:stderr_buf_to_flush] != '')
406 log = Log.new(object_uuid: running_job[:job].uuid,
407 event_type: 'stderr',
408 owner_uuid: running_job[:job].owner_uuid,
409 properties: {"text" => running_job[:stderr_buf_to_flush]})
411 running_job[:stderr_buf_to_flush] = ''
412 running_job[:stderr_flushed_at] = Time.now.to_i
415 running_job[:stderr_buf] = "Failed to write logs \n"
416 running_job[:stderr_buf_to_flush] = ''
417 running_job[:stderr_flushed_at] = Time.now.to_i
423 # This is how crunch-job child procs know where the "refresh" trigger file is
424 ENV["CRUNCH_REFRESH_TRIGGER"] = Rails.configuration.crunch_refresh_trigger