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'
30 LOG_BUFFER_SIZE = 2**20
33 include ApplicationHelper
36 return act_as_system_user
41 @todo_pipelines = PipelineInstance.queue
45 @@slurm_version ||= Gem::Version.new(`sinfo --version`.match(/\b[\d\.]+\b/)[0])
46 if Gem::Version.new('2.3') <= @@slurm_version
47 `sinfo --noheader -o '%n:%t'`.strip
49 # Expand rows with hostname ranges (like "foo[1-3,5,9-12]:idle")
50 # into multiple rows with one hostname each.
51 `sinfo --noheader -o '%N:%t'`.split("\n").collect do |line|
52 tokens = line.split ":"
53 if (re = tokens[0].match /^(.*?)\[([-,\d]+)\]$/)
54 re[2].split(",").collect do |range|
55 range = range.split("-").collect(&:to_i)
56 (range[0]..range[-1]).collect do |n|
57 [re[1] + n.to_s, tokens[1..-1]].join ":"
67 def update_node_status
68 if Server::Application.config.crunch_job_wrapper.to_s.match /^slurm/
69 @nodes_in_state = {idle: 0, alloc: 0, down: 0}
75 re = line.match /(\S+?):+(idle|alloc|down)/
78 # sinfo tells us about a node N times if it is shared by N partitions
79 next if node_seen[re[1]]
80 node_seen[re[1]] = true
82 # count nodes in each state
83 @nodes_in_state[re[2].to_sym] += 1
85 # update our database (and cache) when a node's state changes
86 if @node_state[re[1]] != re[2]
87 @node_state[re[1]] = re[2]
88 node = Node.where('hostname=?', re[1]).first
90 $stderr.puts "dispatch: update #{re[1]} state to #{re[2]}"
91 node.info[:slurm_state] = re[2]
94 $stderr.puts "dispatch: sinfo reports '#{re[1]}' is not down, but no node has that name"
108 if job.runtime_constraints['min_nodes']
109 min_nodes = begin job.runtime_constraints['min_nodes'].to_i rescue 1 end
114 next if @nodes_in_state[:idle] < min_nodes
118 next if @running[job.uuid]
122 case Server::Application.config.crunch_job_wrapper
125 when :slurm_immediate
126 cmd_args = ["salloc",
131 "--job-name=#{job.uuid}",
132 "--nodes=#{min_nodes}"]
134 raise "Unknown crunch_job_wrapper: #{Server::Application.config.crunch_job_wrapper}"
137 if Server::Application.config.crunch_job_user
138 cmd_args.unshift("sudo", "-E", "-u",
139 Server::Application.config.crunch_job_user,
140 "PERLLIB=#{ENV['PERLLIB']}")
143 job_auth = ApiClientAuthorization.
144 new(user: User.where('uuid=?', job.modified_by_user_uuid).first,
148 crunch_job_bin = (ENV['CRUNCH_JOB_BIN'] || `which arv-crunch-job`.strip)
149 if crunch_job_bin == ''
150 raise "No CRUNCH_JOB_BIN env var, and crunch-job not in path."
153 cmd_args << crunch_job_bin
154 cmd_args << '--job-api-token'
155 cmd_args << job_auth.api_token
159 commit = Commit.where(sha1: job.script_version).first
161 cmd_args << '--git-dir'
162 if File.exists?(File.
163 join(Rails.configuration.git_repositories_dir,
164 commit.repository_name + '.git'))
166 join(Rails.configuration.git_repositories_dir,
167 commit.repository_name + '.git')
170 join(Rails.configuration.git_repositories_dir,
171 commit.repository_name, '.git')
175 $stderr.puts "dispatch: #{cmd_args.join ' '}"
178 i, o, e, t = Open3.popen3(*cmd_args)
180 $stderr.puts "dispatch: popen3: #{$!}"
186 $stderr.puts "dispatch: job #{job.uuid}"
187 start_banner = "dispatch: child #{t.pid} start #{Time.now.ctime.to_s}"
188 $stderr.puts start_banner
189 $redis.set job.uuid, start_banner + "\n"
190 $redis.publish job.uuid, start_banner
191 $redis.publish job.owner_uuid, start_banner
193 @running[job.uuid] = {
209 # no-op -- let crunch-job take care of locking.
214 # no-op -- let crunch-job take care of locking.
219 @running.each do |job_uuid, j|
222 # Throw away child stdout
224 j[:stdout].read_nonblock(2**20)
225 rescue Errno::EAGAIN, EOFError
228 # Read whatever is available from child stderr
231 stderr_buf = j[:stderr].read_nonblock(2**20)
232 rescue Errno::EAGAIN, EOFError
236 j[:stderr_buf] << stderr_buf
237 if j[:stderr_buf].index "\n"
238 lines = j[:stderr_buf].lines("\n").to_a
239 if j[:stderr_buf][-1] == "\n"
242 j[:stderr_buf] = lines.pop
245 $stderr.print "#{job_uuid} ! " unless line.index(job_uuid)
247 pub_msg = "#{Time.now.ctime.to_s} #{line.strip}"
248 $redis.publish job.owner_uuid, pub_msg
249 $redis.publish job_uuid, pub_msg
250 $redis.append job_uuid, pub_msg + "\n"
251 if LOG_BUFFER_SIZE < $redis.strlen(job_uuid)
254 .getrange(job_uuid, (LOG_BUFFER_SIZE >> 1), -1)
264 return if 0 == @running.size
270 pid_done = waitpid(-1, Process::WNOHANG | Process::WUNTRACED)
272 j_done = @running.values.
273 select { |j| j[:wait_thr].pid == pid_done }.
276 rescue SystemCallError
277 # I have @running processes but system reports I have no
278 # children. This is likely to happen repeatedly if it happens at
279 # all; I will log this no more than once per child process I
281 if 0 < @running.select { |uuid,j| j[:warned_waitpid_error].nil? }.size
282 children = @running.values.collect { |j| j[:wait_thr].pid }.join ' '
283 $stderr.puts "dispatch: IPC bug: waitpid() error (#{$!}), but I have children #{children}"
285 @running.each do |uuid,j| j[:warned_waitpid_error] = true end
288 @running.each do |uuid, j|
289 if j[:wait_thr].status == false
290 pid_done = j[:wait_thr].pid
298 job_done = j_done[:job]
299 $stderr.puts "dispatch: child #{pid_done} exit"
300 $stderr.puts "dispatch: job #{job_done.uuid} end"
302 # Ensure every last drop of stdout and stderr is consumed
304 if j_done[:stderr_buf] and j_done[:stderr_buf] != ''
305 $stderr.puts j_done[:stderr_buf] + "\n"
309 j_done[:wait_thr].value
311 jobrecord = Job.find_by_uuid(job_done.uuid)
312 jobrecord.running = false
313 jobrecord.finished_at ||= Time.now
314 # Don't set 'jobrecord.success = false' because if the job failed to run due to an
315 # issue with crunch-job or slurm, we want the job to stay in the queue.
318 # Invalidate the per-job auth token
319 j_done[:job_auth].update_attributes expires_at: Time.now
321 $redis.publish job_done.uuid, "end"
323 @running.delete job_done.uuid
327 @todo_pipelines.each do |p|
328 pipe_auth = ApiClientAuthorization.
329 new(user: User.where('uuid=?', p.modified_by_user_uuid).first,
333 puts `export ARVADOS_API_TOKEN=#{pipe_auth.api_token} && arv-run-pipeline-instance --run-here --no-wait --instance #{p.uuid}`
340 $stderr.puts "dispatch: ready"
341 while !$signal[:term] or @running.size > 0
344 @running.each do |uuid, j|
345 if !j[:started] and j[:sent_int] < 2
347 Process.kill 'INT', j[:wait_thr].pid
349 # No such pid = race condition + desired result is
356 refresh_todo unless did_recently(:refresh_todo, 1.0)
358 unless @todo.empty? or did_recently(:start_jobs, 1.0) or $signal[:term]
361 unless @todo_pipelines.empty? or did_recently(:update_pipelines, 5.0)
366 select(@running.values.collect { |j| [j[:stdout], j[:stderr]] }.flatten,
373 def did_recently(thing, min_interval)
375 if !@did_recently[thing] or @did_recently[thing] < Time.now - min_interval
376 @did_recently[thing] = Time.now
384 # This is how crunch-job child procs know where the "refresh" trigger file is
385 ENV["CRUNCH_REFRESH_TRIGGER"] = Rails.configuration.crunch_refresh_trigger