2678: upon Tom's feedback, setting owner_uuid of the pi whether or not the pi belongs...
[arvados.git] / services / api / script / crunch-dispatch.rb
1 #!/usr/bin/env ruby
2
3 include Process
4
5 $warned = {}
6 $signal = {}
7 %w{TERM INT}.each do |sig|
8   signame = sig
9   Signal.trap(sig) do
10     $stderr.puts "Received #{signame} signal"
11     $signal[:term] = true
12   end
13 end
14
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"
20   end
21 end
22
23 ENV["RAILS_ENV"] = ARGV[0] || ENV["RAILS_ENV"] || "development"
24
25 require File.dirname(__FILE__) + '/../config/boot'
26 require File.dirname(__FILE__) + '/../config/environment'
27 require 'open3'
28
29 LOG_BUFFER_SIZE = 4096
30
31 class Dispatcher
32   include ApplicationHelper
33
34   def sysuser
35     return act_as_system_user
36   end
37
38   def refresh_todo
39     @todo = Job.queue.select do |j| j.repository end
40     @todo_pipelines = PipelineInstance.queue
41   end
42
43   def sinfo
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
47     else
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 ":"
57             end
58           end
59         else
60           tokens.join ":"
61         end
62       end.flatten.join "\n"
63     end
64   end
65
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}
69       @node_state ||= {}
70       node_seen = {}
71       begin
72         sinfo.split("\n").
73           each do |line|
74           re = line.match /(\S+?):+(idle|alloc|down)/
75           next if !re
76
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
80
81           # count nodes in each state
82           @nodes_in_state[re[2].to_sym] += 1
83
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
88             if node
89               $stderr.puts "dispatch: update #{re[1]} state to #{re[2]}"
90               node.info[:slurm_state] = re[2]
91               node.save
92             elsif re[2] != 'down'
93               $stderr.puts "dispatch: sinfo reports '#{re[1]}' is not down, but no node has that name"
94             end
95           end
96         end
97       rescue
98       end
99     end
100   end
101
102   def start_jobs
103     @todo.each do |job|
104
105       min_nodes = 1
106       begin
107         if job.runtime_constraints['min_nodes']
108           min_nodes = begin job.runtime_constraints['min_nodes'].to_i rescue 1 end
109         end
110       end
111
112       begin
113         next if @nodes_in_state[:idle] < min_nodes
114       rescue
115       end
116
117       next if @running[job.uuid]
118       next if !take(job)
119
120       cmd_args = nil
121       case Server::Application.config.crunch_job_wrapper
122       when :none
123         cmd_args = []
124       when :slurm_immediate
125         cmd_args = ["salloc",
126                     "--chdir=/",
127                     "--immediate",
128                     "--exclusive",
129                     "--no-kill",
130                     "--job-name=#{job.uuid}",
131                     "--nodes=#{min_nodes}"]
132       else
133         raise "Unknown crunch_job_wrapper: #{Server::Application.config.crunch_job_wrapper}"
134       end
135
136       if Server::Application.config.crunch_job_user
137         cmd_args.unshift("sudo", "-E", "-u",
138                          Server::Application.config.crunch_job_user,
139                          "PERLLIB=#{ENV['PERLLIB']}")
140       end
141
142       job_auth = ApiClientAuthorization.
143         new(user: User.where('uuid=?', job.modified_by_user_uuid).first,
144             api_client_id: 0)
145       job_auth.save
146
147       crunch_job_bin = (ENV['CRUNCH_JOB_BIN'] || `which arv-crunch-job`.strip)
148       if crunch_job_bin == ''
149         raise "No CRUNCH_JOB_BIN env var, and crunch-job not in path."
150       end
151
152       require 'shellwords'
153
154       arvados_internal = Rails.configuration.git_internal_dir
155       if not File.exists? arvados_internal
156         $stderr.puts `mkdir -p #{arvados_internal.shellescape} && cd #{arvados_internal.shellescape} && git init --bare`
157       end
158
159       src_repo = File.join(Rails.configuration.git_repositories_dir, job.repository + '.git')
160       src_repo = File.join(Rails.configuration.git_repositories_dir, job.repository, '.git') unless File.exists? src_repo
161
162       unless src_repo
163         $stderr.puts "dispatch: #{File.join Rails.configuration.git_repositories_dir, job.repository} doesn't exist"
164         sleep 1
165         untake(job)
166         next
167       end
168
169       $stderr.puts `cd #{arvados_internal.shellescape} && git fetch --no-tags #{src_repo.shellescape} && git tag #{job.uuid.shellescape} #{job.script_version.shellescape}`
170
171       cmd_args << crunch_job_bin
172       cmd_args << '--job-api-token'
173       cmd_args << job_auth.api_token
174       cmd_args << '--job'
175       cmd_args << job.uuid
176       cmd_args << '--git-dir'
177       cmd_args << arvados_internal
178
179       $stderr.puts "dispatch: #{cmd_args.join ' '}"
180
181       begin
182         i, o, e, t = Open3.popen3(*cmd_args)
183       rescue
184         $stderr.puts "dispatch: popen3: #{$!}"
185         sleep 1
186         untake(job)
187         next
188       end
189
190       $stderr.puts "dispatch: job #{job.uuid}"
191       start_banner = "dispatch: child #{t.pid} start #{Time.now.ctime.to_s}"
192       $stderr.puts start_banner
193
194       @running[job.uuid] = {
195         stdin: i,
196         stdout: o,
197         stderr: e,
198         wait_thr: t,
199         job: job,
200         stderr_buf: '',
201         started: false,
202         sent_int: 0,
203         job_auth: job_auth,
204         stderr_flushed_at: 0
205       }
206       i.close
207     end
208   end
209
210   def take(job)
211     # no-op -- let crunch-job take care of locking.
212     true
213   end
214
215   def untake(job)
216     # no-op -- let crunch-job take care of locking.
217     true
218   end
219
220   def read_pipes
221     @running.each do |job_uuid, j|
222       job = j[:job]
223
224       # Throw away child stdout
225       begin
226         j[:stdout].read_nonblock(2**20)
227       rescue Errno::EAGAIN, EOFError
228       end
229
230       # Read whatever is available from child stderr
231       stderr_buf = false
232       begin
233         stderr_buf = j[:stderr].read_nonblock(2**20)
234       rescue Errno::EAGAIN, EOFError
235       end
236
237       if stderr_buf
238         if stderr_buf.index "\n"
239         lines = stderr_buf.lines("\n").to_a
240           lines.each do |line|
241             $stderr.print "#{job_uuid} ! " unless line.index(job_uuid)
242             $stderr.puts line
243             log_msg = "#{Time.now.ctime.to_s} #{line.strip}"
244             j[:stderr_buf] << (log_msg + " \n")
245           end
246
247           if (LOG_BUFFER_SIZE < j[:stderr_buf].size) || ((j[:stderr_flushed_at]+1) < Time.now.to_i)
248             write_log j
249             j[:stderr_flushed_at] = Time.now.to_i
250           end
251         end
252       end
253     end
254   end
255
256   def reap_children
257     return if 0 == @running.size
258     pid_done = nil
259     j_done = nil
260
261     if false
262       begin
263         pid_done = waitpid(-1, Process::WNOHANG | Process::WUNTRACED)
264         if pid_done
265           j_done = @running.values.
266             select { |j| j[:wait_thr].pid == pid_done }.
267             first
268         end
269       rescue SystemCallError
270         # I have @running processes but system reports I have no
271         # children. This is likely to happen repeatedly if it happens at
272         # all; I will log this no more than once per child process I
273         # start.
274         if 0 < @running.select { |uuid,j| j[:warned_waitpid_error].nil? }.size
275           children = @running.values.collect { |j| j[:wait_thr].pid }.join ' '
276           $stderr.puts "dispatch: IPC bug: waitpid() error (#{$!}), but I have children #{children}"
277         end
278         @running.each do |uuid,j| j[:warned_waitpid_error] = true end
279       end
280     else
281       @running.each do |uuid, j|
282         if j[:wait_thr].status == false
283           pid_done = j[:wait_thr].pid
284           j_done = j
285         end
286       end
287     end
288
289     return if !pid_done
290
291     job_done = j_done[:job]
292     $stderr.puts "dispatch: child #{pid_done} exit"
293     $stderr.puts "dispatch: job #{job_done.uuid} end"
294
295     # Ensure every last drop of stdout and stderr is consumed
296     read_pipes
297     write_log j_done # write any remaining logs
298
299     if j_done[:stderr_buf] and j_done[:stderr_buf] != ''
300       $stderr.puts j_done[:stderr_buf] + "\n"
301     end
302
303     # Wait the thread
304     j_done[:wait_thr].value
305
306     jobrecord = Job.find_by_uuid(job_done.uuid)
307     if jobrecord.started_at
308       # Clean up state fields in case crunch-job exited without
309       # putting the job in a suitable "finished" state.
310       jobrecord.running = false
311       jobrecord.finished_at ||= Time.now
312       if jobrecord.success.nil?
313         jobrecord.success = false
314       end
315       jobrecord.save!
316     else
317       # Don't fail the job if crunch-job didn't even get as far as
318       # starting it. If the job failed to run due to an infrastructure
319       # issue with crunch-job or slurm, we want the job to stay in the
320       # queue.
321     end
322
323     # Invalidate the per-job auth token
324     j_done[:job_auth].update_attributes expires_at: Time.now
325
326     @running.delete job_done.uuid
327   end
328
329   def update_pipelines
330     expire_tokens = @pipe_auth_tokens.dup
331     @todo_pipelines.each do |p|
332       pipe_auth = (@pipe_auth_tokens[p.uuid] ||= ApiClientAuthorization.
333                    create(user: User.where('uuid=?', p.modified_by_user_uuid).first,
334                           api_client_id: 0))
335       puts `export ARVADOS_API_TOKEN=#{pipe_auth.api_token} && arv-run-pipeline-instance --run-here --no-wait --instance #{p.uuid}`
336       expire_tokens.delete p.uuid
337     end
338
339     expire_tokens.each do |k, v|
340       v.update_attributes expires_at: Time.now
341       @pipe_auth_tokens.delete k
342     end
343   end
344
345   def run
346     act_as_system_user
347     @running ||= {}
348     @pipe_auth_tokens ||= { }
349     $stderr.puts "dispatch: ready"
350     while !$signal[:term] or @running.size > 0
351       read_pipes
352       if $signal[:term]
353         @running.each do |uuid, j|
354           if !j[:started] and j[:sent_int] < 2
355             begin
356               Process.kill 'INT', j[:wait_thr].pid
357             rescue Errno::ESRCH
358               # No such pid = race condition + desired result is
359               # already achieved
360             end
361             j[:sent_int] += 1
362           end
363         end
364       else
365         refresh_todo unless did_recently(:refresh_todo, 1.0)
366         update_node_status
367         unless @todo.empty? or did_recently(:start_jobs, 1.0) or $signal[:term]
368           start_jobs
369         end
370         unless (@todo_pipelines.empty? and @pipe_auth_tokens.empty?) or did_recently(:update_pipelines, 5.0)
371           update_pipelines
372         end
373       end
374       reap_children
375       select(@running.values.collect { |j| [j[:stdout], j[:stderr]] }.flatten,
376              [], [], 1)
377     end
378   end
379
380   protected
381
382   def did_recently(thing, min_interval)
383     @did_recently ||= {}
384     if !@did_recently[thing] or @did_recently[thing] < Time.now - min_interval
385       @did_recently[thing] = Time.now
386       false
387     else
388       true
389     end
390   end
391
392   # send message to log table. we want these records to be transient
393   def write_log running_job
394       if (running_job && running_job[:stderr_buf] != '')
395         log = Log.new(object_uuid: running_job[:job].uuid,
396                       event_type: 'stderr',
397                       owner_uuid: running_job[:job].owner_uuid,
398                       properties: {"text" => running_job[:stderr_buf]})
399         log.save!
400         running_job[:stderr_buf] = ''
401         running_job[:stderr_flushed_at] = Time.now.to_i
402       end
403     rescue
404       running_job[:stderr_buf] = "Failed to write logs \n"
405       running_job[:stderr_flushed_at] = Time.now.to_i
406     end
407   end
408
409 end
410
411 # This is how crunch-job child procs know where the "refresh" trigger file is
412 ENV["CRUNCH_REFRESH_TRIGGER"] = Rails.configuration.crunch_refresh_trigger
413
414 Dispatcher.new.run