3 # We want files written by crunch-dispatch to be writable by other processes
4 # with the same GID, see bug #7228
11 (ARGV.any? ? ARGV : ['--jobs', '--pipelines']).each do |arg|
14 $options[:jobs] = true
16 $options[:pipelines] = true
18 abort "Unrecognized command line option '#{arg}'"
21 if not ($options[:jobs] or $options[:pipelines])
22 abort "Nothing to do. Please specify at least one of: --jobs, --pipelines."
25 ARGV.reject! { |a| a =~ /--jobs|--pipelines/ }
29 %w{TERM INT}.each do |sig|
32 $stderr.puts "Received #{signame} signal"
37 if ENV["CRUNCH_DISPATCH_LOCKFILE"]
38 lockfilename = ENV.delete "CRUNCH_DISPATCH_LOCKFILE"
39 lockfile = File.open(lockfilename, File::RDWR|File::CREAT, 0644)
40 unless lockfile.flock File::LOCK_EX|File::LOCK_NB
41 abort "Lock unavailable on #{lockfilename} - exit"
45 ENV["RAILS_ENV"] = ARGV[0] || ENV["RAILS_ENV"] || "development"
47 require File.dirname(__FILE__) + '/../config/boot'
48 require File.dirname(__FILE__) + '/../config/environment'
53 self.utc.strftime "%Y-%m-%d_%H:%M:%S"
58 include ApplicationHelper
61 EXIT_RETRY_UNLOCKED = 93
62 RETRY_UNLOCKED_LIMIT = 3
65 @crunch_job_bin = (ENV['CRUNCH_JOB_BIN'] || `which arv-crunch-job`.strip)
66 if @crunch_job_bin.empty?
67 raise "No CRUNCH_JOB_BIN env var, and crunch-job not in path."
70 @docker_bin = ENV['CRUNCH_JOB_DOCKER_BIN']
72 @arvados_internal = Rails.configuration.git_internal_dir
73 if not File.exists? @arvados_internal
74 $stderr.puts `mkdir -p #{@arvados_internal.shellescape} && git init --bare #{@arvados_internal.shellescape}`
75 raise "No internal git repository available" unless ($? == 0)
78 @repo_root = Rails.configuration.git_repositories_dir
79 @arvados_repo_path = Repository.where(name: "arvados").first.server_path
85 @pipe_auth_tokens = {}
88 @todo_job_retries = {}
89 @job_retry_counts = Hash.new(0)
94 return act_as_system_user
99 @todo = @todo_job_retries.values + Job.queue.select(&:repository)
101 if $options[:pipelines]
102 @todo_pipelines = PipelineInstance.queue
106 def each_slurm_line(cmd, outfmt, max_fields=nil)
107 max_fields ||= outfmt.split(":").size
108 max_fields += 1 # To accommodate the node field we add
109 @@slurm_version ||= Gem::Version.new(`sinfo --version`.match(/\b[\d\.]+\b/)[0])
110 if Gem::Version.new('2.3') <= @@slurm_version
111 `#{cmd} --noheader -o '%n:#{outfmt}'`.each_line do |line|
112 yield line.chomp.split(":", max_fields)
115 # Expand rows with hostname ranges (like "foo[1-3,5,9-12]:idle")
116 # into multiple rows with one hostname each.
117 `#{cmd} --noheader -o '%N:#{outfmt}'`.each_line do |line|
118 tokens = line.chomp.split(":", max_fields)
119 if (re = tokens[0].match /^(.*?)\[([-,\d]+)\]$/)
121 re[2].split(",").each do |range|
122 range = range.split("-").collect(&:to_i)
123 (range[0]..range[-1]).each do |n|
124 yield [re[1] + n.to_s] + tokens
136 each_slurm_line("sinfo", "%t") do |hostname, state|
137 # Treat nodes in idle* state as down, because the * means that slurm
138 # hasn't been able to communicate with it recently.
139 state.sub!(/^idle\*/, "down")
140 state.sub!(/\W+$/, "")
141 state = "down" unless %w(idle alloc down).include?(state)
142 slurm_nodes[hostname] = {state: state, job: nil}
144 each_slurm_line("squeue", "%j") do |hostname, job_uuid|
145 slurm_nodes[hostname][:job] = job_uuid if slurm_nodes[hostname]
150 def update_node_status
151 return unless Server::Application.config.crunch_job_wrapper.to_s.match /^slurm/
152 slurm_status.each_pair do |hostname, slurmdata|
153 next if @node_state[hostname] == slurmdata
155 node = Node.where('hostname=?', hostname).order(:last_ping_at).last
157 $stderr.puts "dispatch: update #{hostname} state to #{slurmdata}"
158 node.info["slurm_state"] = slurmdata[:state]
159 node.job_uuid = slurmdata[:job]
161 @node_state[hostname] = slurmdata
163 $stderr.puts "dispatch: failed to update #{node.uuid}: #{node.errors.messages}"
165 elsif slurmdata[:state] != 'down'
166 $stderr.puts "dispatch: SLURM reports '#{hostname}' is not down, but no node has that name"
169 $stderr.puts "dispatch: error updating #{hostname} node status: #{error}"
174 def positive_int(raw_value, default=nil)
175 value = begin raw_value.to_i rescue 0 end
183 NODE_CONSTRAINT_MAP = {
184 # Map Job runtime_constraints keys to the corresponding Node info key.
185 'min_ram_mb_per_node' => 'total_ram_mb',
186 'min_scratch_mb_per_node' => 'total_scratch_mb',
187 'min_cores_per_node' => 'total_cpu_cores',
190 def nodes_available_for_job_now(job)
191 # Find Nodes that satisfy a Job's runtime constraints (by building
192 # a list of Procs and using them to test each Node). If there
193 # enough to run the Job, return an array of their names.
194 # Otherwise, return nil.
195 need_procs = NODE_CONSTRAINT_MAP.each_pair.map do |job_key, node_key|
197 positive_int(node.info[node_key], 0) >=
198 positive_int(job.runtime_constraints[job_key], 0)
201 min_node_count = positive_int(job.runtime_constraints['min_nodes'], 1)
203 Node.find_each do |node|
204 good_node = (node.info['slurm_state'] == 'idle')
205 need_procs.each { |node_test| good_node &&= node_test.call(node) }
208 if usable_nodes.count >= min_node_count
209 return usable_nodes.map { |node| node.hostname }
216 def nodes_available_for_job(job)
217 # Check if there are enough idle nodes with the Job's minimum
218 # hardware requirements to run it. If so, return an array of
219 # their names. If not, up to once per hour, signal start_jobs to
220 # hold off launching Jobs. This delay is meant to give the Node
221 # Manager an opportunity to make new resources available for new
224 # The exact timing parameters here might need to be adjusted for
225 # the best balance between helping the longest-waiting Jobs run,
226 # and making efficient use of immediately available resources.
227 # These are all just first efforts until we have more data to work
229 nodelist = nodes_available_for_job_now(job)
230 if nodelist.nil? and not did_recently(:wait_for_available_nodes, 3600)
231 $stderr.puts "dispatch: waiting for nodes for #{job.uuid}"
232 @node_wait_deadline = Time.now + 5.minutes
237 def fail_job job, message
238 $stderr.puts "dispatch: #{job.uuid}: #{message}"
240 Log.new(object_uuid: job.uuid,
241 event_type: 'dispatch',
242 owner_uuid: job.owner_uuid,
244 properties: {"text" => message}).save!
246 $stderr.puts "dispatch: log.create failed"
250 job.lock @authorizations[job.uuid].user.uuid
253 $stderr.puts "dispatch: save failed setting job #{job.uuid} to failed"
255 rescue ArvadosModel::AlreadyLockedError
256 $stderr.puts "dispatch: tried to mark job #{job.uuid} as failed but it was already locked by someone else"
260 def stdout_s(cmd_a, opts={})
261 IO.popen(cmd_a, "r", opts) do |pipe|
262 return pipe.read.chomp
267 ["git", "--git-dir=#{@arvados_internal}"] + cmd_a
270 def get_authorization(job)
271 if @authorizations[job.uuid] and
272 @authorizations[job.uuid].user.uuid != job.modified_by_user_uuid
273 # We already made a token for this job, but we need a new one
274 # because modified_by_user_uuid has changed (the job will run
275 # as a different user).
276 @authorizations[job.uuid].update_attributes expires_at: Time.now
277 @authorizations[job.uuid] = nil
279 if not @authorizations[job.uuid]
280 auth = ApiClientAuthorization.
281 new(user: User.where('uuid=?', job.modified_by_user_uuid).first,
284 $stderr.puts "dispatch: auth.save failed for #{job.uuid}"
286 @authorizations[job.uuid] = auth
289 @authorizations[job.uuid]
292 def internal_repo_has_commit? sha1
293 if (not @fetched_commits[sha1] and
294 sha1 == stdout_s(git_cmd("rev-list", "-n1", sha1), err: "/dev/null") and
296 @fetched_commits[sha1] = true
298 return @fetched_commits[sha1]
301 def get_commit src_repo, sha1
302 return true if internal_repo_has_commit? sha1
304 # commit does not exist in internal repository, so import the
305 # source repository using git fetch-pack
306 cmd = git_cmd("fetch-pack", "--no-progress", "--all", src_repo)
307 $stderr.puts "dispatch: #{cmd}"
308 $stderr.puts(stdout_s(cmd))
309 @fetched_commits[sha1] = ($? == 0)
312 def tag_commit(commit_hash, tag_name)
313 # @git_tags[T]==V if we know commit V has been tagged T in the
314 # arvados_internal repository.
315 if not @git_tags[tag_name]
316 cmd = git_cmd("tag", tag_name, commit_hash)
317 $stderr.puts "dispatch: #{cmd}"
318 $stderr.puts(stdout_s(cmd, err: "/dev/null"))
320 # git tag failed. This may be because the tag already exists, so check for that.
321 tag_rev = stdout_s(git_cmd("rev-list", "-n1", tag_name))
323 # We got a revision back
324 if tag_rev != commit_hash
325 # Uh oh, the tag doesn't point to the revision we were expecting.
326 # Someone has been monkeying with the job record and/or git.
327 fail_job job, "Existing tag #{tag_name} points to commit #{tag_rev} but expected commit #{commit_hash}"
330 # we're okay (fall through to setting @git_tags below)
332 # git rev-list failed for some reason.
333 fail_job job, "'git tag' for #{tag_name} failed but did not find any existing tag using 'git rev-list'"
337 # 'git tag' was successful, or there is an existing tag that points to the same revision.
338 @git_tags[tag_name] = commit_hash
339 elsif @git_tags[tag_name] != commit_hash
340 fail_job job, "Existing tag #{tag_name} points to commit #{@git_tags[tag_name]} but this job uses commit #{commit_hash}"
348 next if @running[job.uuid]
351 case Server::Application.config.crunch_job_wrapper
354 # Don't run more than one at a time.
358 when :slurm_immediate
359 nodelist = nodes_available_for_job(job)
361 if Time.now < @node_wait_deadline
367 cmd_args = ["salloc",
372 "--job-name=#{job.uuid}",
373 "--nodelist=#{nodelist.join(',')}"]
375 raise "Unknown crunch_job_wrapper: #{Server::Application.config.crunch_job_wrapper}"
378 if Server::Application.config.crunch_job_user
379 cmd_args.unshift("sudo", "-E", "-u",
380 Server::Application.config.crunch_job_user,
381 "LD_LIBRARY_PATH=#{ENV['LD_LIBRARY_PATH']}",
382 "PATH=#{ENV['PATH']}",
383 "PERLLIB=#{ENV['PERLLIB']}",
384 "PYTHONPATH=#{ENV['PYTHONPATH']}",
385 "RUBYLIB=#{ENV['RUBYLIB']}",
386 "GEM_PATH=#{ENV['GEM_PATH']}")
389 next unless get_authorization job
391 ready = internal_repo_has_commit? job.script_version
394 # Import the commit from the specified repository into the
395 # internal repository. This should have been done already when
396 # the job was created/updated; this code is obsolete except to
397 # avoid deployment races. Failing the job would be a
398 # reasonable thing to do at this point.
399 repo = Repository.where(name: job.repository).first
400 if repo.nil? or repo.server_path.nil?
401 fail_job "Repository #{job.repository} not found under #{@repo_root}"
404 ready &&= get_commit repo.server_path, job.script_version
405 ready &&= tag_commit job.script_version, job.uuid
408 # This should be unnecessary, because API server does it during
409 # job create/update, but it's still not a bad idea to verify the
410 # tag is correct before starting the job:
411 ready &&= tag_commit job.script_version, job.uuid
413 # The arvados_sdk_version doesn't support use of arbitrary
414 # remote URLs, so the requested version isn't necessarily copied
415 # into the internal repository yet.
416 if job.arvados_sdk_version
417 ready &&= get_commit @arvados_repo_path, job.arvados_sdk_version
418 ready &&= tag_commit job.arvados_sdk_version, "#{job.uuid}-arvados-sdk"
422 fail_job job, "commit not present in internal repository"
426 cmd_args += [@crunch_job_bin,
427 '--job-api-token', @authorizations[job.uuid].api_token,
429 '--git-dir', @arvados_internal]
432 cmd_args += ['--docker-bin', @docker_bin]
435 if @todo_job_retries.include?(job.uuid)
436 cmd_args << "--force-unlock"
439 $stderr.puts "dispatch: #{cmd_args.join ' '}"
442 i, o, e, t = Open3.popen3(*cmd_args)
444 $stderr.puts "dispatch: popen3: #{$!}"
449 $stderr.puts "dispatch: job #{job.uuid}"
450 start_banner = "dispatch: child #{t.pid} start #{LogTime.now}"
451 $stderr.puts start_banner
453 @running[job.uuid] = {
459 buf: {stderr: '', stdout: ''},
462 job_auth: @authorizations[job.uuid],
463 stderr_buf_to_flush: '',
464 stderr_flushed_at: Time.new(0),
467 log_throttle_is_open: true,
468 log_throttle_reset_time: Time.now + Rails.configuration.crunch_log_throttle_period,
469 log_throttle_bytes_so_far: 0,
470 log_throttle_lines_so_far: 0,
471 log_throttle_bytes_skipped: 0,
474 @todo_job_retries.delete(job.uuid)
479 # Test for hard cap on total output and for log throttling. Returns whether
480 # the log line should go to output or not. Modifies "line" in place to
481 # replace it with an error if a logging limit is tripped.
482 def rate_limit running_job, line
485 if running_job[:log_throttle_is_open]
486 running_job[:log_throttle_lines_so_far] += 1
487 running_job[:log_throttle_bytes_so_far] += linesize
488 running_job[:bytes_logged] += linesize
490 if (running_job[:bytes_logged] >
491 Rails.configuration.crunch_limit_log_bytes_per_job)
492 message = "Exceeded log limit #{Rails.configuration.crunch_limit_log_bytes_per_job} bytes (crunch_limit_log_bytes_per_job). Log will be truncated."
493 running_job[:log_throttle_reset_time] = Time.now + 100.years
494 running_job[:log_throttle_is_open] = false
496 elsif (running_job[:log_throttle_bytes_so_far] >
497 Rails.configuration.crunch_log_throttle_bytes)
498 remaining_time = running_job[:log_throttle_reset_time] - Time.now
499 message = "Exceeded rate #{Rails.configuration.crunch_log_throttle_bytes} bytes per #{Rails.configuration.crunch_log_throttle_period} seconds (crunch_log_throttle_bytes). Logging will be silenced for the next #{remaining_time.round} seconds.\n"
500 running_job[:log_throttle_is_open] = false
502 elsif (running_job[:log_throttle_lines_so_far] >
503 Rails.configuration.crunch_log_throttle_lines)
504 remaining_time = running_job[:log_throttle_reset_time] - Time.now
505 message = "Exceeded rate #{Rails.configuration.crunch_log_throttle_lines} lines per #{Rails.configuration.crunch_log_throttle_period} seconds (crunch_log_throttle_lines), logging will be silenced for the next #{remaining_time.round} seconds.\n"
506 running_job[:log_throttle_is_open] = false
510 if not running_job[:log_throttle_is_open]
511 # Don't log anything if any limit has been exceeded. Just count lossage.
512 running_job[:log_throttle_bytes_skipped] += linesize
516 # Yes, write to logs, but use our "rate exceeded" message
517 # instead of the log message that exceeded the limit.
521 running_job[:log_throttle_is_open]
526 @running.each do |job_uuid, j|
530 if now > j[:log_throttle_reset_time]
531 # It has been more than throttle_period seconds since the last
532 # checkpoint so reset the throttle
533 if j[:log_throttle_bytes_skipped] > 0
534 message = "#{job_uuid} ! Skipped #{j[:log_throttle_bytes_skipped]} bytes of log"
536 j[:stderr_buf_to_flush] << "#{LogTime.now} #{message}\n"
539 j[:log_throttle_reset_time] = now + Rails.configuration.crunch_log_throttle_period
540 j[:log_throttle_bytes_so_far] = 0
541 j[:log_throttle_lines_so_far] = 0
542 j[:log_throttle_bytes_skipped] = 0
543 j[:log_throttle_is_open] = true
546 j[:buf].each do |stream, streambuf|
547 # Read some data from the child stream
550 # It's important to use a big enough buffer here. When we're
551 # being flooded with logs, we must read and discard many
552 # bytes at once. Otherwise, we can easily peg a CPU with
553 # time-checking and other loop overhead. (Quick tests show a
554 # 1MiB buffer working 2.5x as fast as a 64 KiB buffer.)
556 # So don't reduce this buffer size!
557 buf = j[stream].read_nonblock(2**20)
558 rescue Errno::EAGAIN, EOFError
561 # Short circuit the counting code if we're just going to throw
562 # away the data anyway.
563 if not j[:log_throttle_is_open]
564 j[:log_throttle_bytes_skipped] += streambuf.size + buf.size
571 # Append to incomplete line from previous read, if any
575 streambuf.each_line do |line|
576 if not line.end_with? $/
577 if line.size > Rails.configuration.crunch_log_throttle_bytes
578 # Without a limit here, we'll use 2x an arbitrary amount
579 # of memory, and waste a lot of time copying strings
580 # around, all without providing any feedback to anyone
581 # about what's going on _or_ hitting any of our throttle
584 # Here we leave "line" alone, knowing it will never be
585 # sent anywhere: rate_limit() will reach
586 # crunch_log_throttle_bytes immediately. However, we'll
587 # leave [...] in bufend: if the trailing end of the long
588 # line does end up getting sent anywhere, it will have
589 # some indication that it is incomplete.
592 # If line length is sane, we'll wait for the rest of the
593 # line to appear in the next read_pipes() call.
598 # rate_limit returns true or false as to whether to actually log
599 # the line or not. It also modifies "line" in place to replace
600 # it with an error if a logging limit is tripped.
601 if rate_limit j, line
602 $stderr.print "#{job_uuid} ! " unless line.index(job_uuid)
604 pub_msg = "#{LogTime.now} #{line.strip}\n"
605 j[:stderr_buf_to_flush] << pub_msg
609 # Leave the trailing incomplete line (if any) in streambuf for
611 streambuf.replace bufend
613 # Flush buffered logs to the logs table, if appropriate. We have
614 # to do this even if we didn't collect any new logs this time:
615 # otherwise, buffered data older than seconds_between_events
616 # won't get flushed until new data arrives.
622 return if 0 == @running.size
628 pid_done = waitpid(-1, Process::WNOHANG | Process::WUNTRACED)
630 j_done = @running.values.
631 select { |j| j[:wait_thr].pid == pid_done }.
634 rescue SystemCallError
635 # I have @running processes but system reports I have no
636 # children. This is likely to happen repeatedly if it happens at
637 # all; I will log this no more than once per child process I
639 if 0 < @running.select { |uuid,j| j[:warned_waitpid_error].nil? }.size
640 children = @running.values.collect { |j| j[:wait_thr].pid }.join ' '
641 $stderr.puts "dispatch: IPC bug: waitpid() error (#{$!}), but I have children #{children}"
643 @running.each do |uuid,j| j[:warned_waitpid_error] = true end
646 @running.each do |uuid, j|
647 if j[:wait_thr].status == false
648 pid_done = j[:wait_thr].pid
656 job_done = j_done[:job]
658 # Ensure every last drop of stdout and stderr is consumed.
660 # Reset flush timestamp to make sure log gets written.
661 j_done[:stderr_flushed_at] = Time.new(0)
662 # Write any remaining logs.
665 j_done[:buf].each do |stream, streambuf|
667 $stderr.puts streambuf + "\n"
671 # Wait the thread (returns a Process::Status)
672 exit_status = j_done[:wait_thr].value.exitstatus
673 exit_tempfail = exit_status == EXIT_TEMPFAIL
675 $stderr.puts "dispatch: child #{pid_done} exit #{exit_status}"
676 $stderr.puts "dispatch: job #{job_done.uuid} end"
678 jobrecord = Job.find_by_uuid(job_done.uuid)
680 if exit_status == EXIT_RETRY_UNLOCKED
681 # The job failed because all of the nodes allocated to it
682 # failed. Only this crunch-dispatch process can retry the job:
683 # it's already locked, and there's no way to put it back in the
684 # Queued state. Put it in our internal todo list unless the job
685 # has failed this way excessively.
686 @job_retry_counts[jobrecord.uuid] += 1
687 exit_tempfail = @job_retry_counts[jobrecord.uuid] <= RETRY_UNLOCKED_LIMIT
689 @todo_job_retries[jobrecord.uuid] = jobrecord
691 $stderr.puts("dispatch: job #{jobrecord.uuid} exceeded node failure retry limit -- giving up")
696 @job_retry_counts.delete(jobrecord.uuid)
697 if jobrecord.state == "Running"
698 # Apparently there was an unhandled error. That could potentially
699 # include "all allocated nodes failed" when we don't to retry
700 # because the job has already been retried RETRY_UNLOCKED_LIMIT
701 # times. Fail the job.
702 jobrecord.state = "Failed"
703 if not jobrecord.save
704 $stderr.puts "dispatch: jobrecord.save failed"
708 # If the job failed to run due to an infrastructure
709 # issue with crunch-job or slurm, we want the job to stay in the
710 # queue. If crunch-job exited after losing a race to another
711 # crunch-job process, it exits 75 and we should leave the job
712 # record alone so the winner of the race can do its thing.
713 # If crunch-job exited after all of its allocated nodes failed,
714 # it exits 93, and we want to retry it later (see the
715 # EXIT_RETRY_UNLOCKED `if` block).
717 # There is still an unhandled race condition: If our crunch-job
718 # process is about to lose a race with another crunch-job
719 # process, but crashes before getting to its "exit 75" (for
720 # example, "cannot fork" or "cannot reach API server") then we
721 # will assume incorrectly that it's our process's fault
722 # jobrecord.started_at is non-nil, and mark the job as failed
723 # even though the winner of the race is probably still doing
727 # Invalidate the per-job auth token, unless the job is still queued and we
728 # might want to try it again.
729 if jobrecord.state != "Queued" and !@todo_job_retries.include?(jobrecord.uuid)
730 j_done[:job_auth].update_attributes expires_at: Time.now
733 @running.delete job_done.uuid
737 expire_tokens = @pipe_auth_tokens.dup
738 @todo_pipelines.each do |p|
739 pipe_auth = (@pipe_auth_tokens[p.uuid] ||= ApiClientAuthorization.
740 create(user: User.where('uuid=?', p.modified_by_user_uuid).first,
742 puts `export ARVADOS_API_TOKEN=#{pipe_auth.api_token} && arv-run-pipeline-instance --run-pipeline-here --no-wait --instance #{p.uuid}`
743 expire_tokens.delete p.uuid
746 expire_tokens.each do |k, v|
747 v.update_attributes expires_at: Time.now
748 @pipe_auth_tokens.delete k
754 User.first.group_permissions
755 $stderr.puts "dispatch: ready"
756 while !$signal[:term] or @running.size > 0
759 @running.each do |uuid, j|
760 if !j[:started] and j[:sent_int] < 2
762 Process.kill 'INT', j[:wait_thr].pid
764 # No such pid = race condition + desired result is
771 refresh_todo unless did_recently(:refresh_todo, 1.0)
772 update_node_status unless did_recently(:update_node_status, 1.0)
773 unless @todo.empty? or did_recently(:start_jobs, 1.0) or $signal[:term]
776 unless (@todo_pipelines.empty? and @pipe_auth_tokens.empty?) or did_recently(:update_pipelines, 5.0)
781 select(@running.values.collect { |j| [j[:stdout], j[:stderr]] }.flatten,
784 # If there are jobs we wanted to retry, we have to mark them as failed now.
785 # Other dispatchers can't pick them up because we hold their lock.
786 @todo_job_retries.each_key do |job_uuid|
787 job = Job.find_by_uuid(job_uuid)
788 if job.state == "Running"
789 fail_job(job, "crunch-dispatch was stopped during job's tempfail retry loop")
796 def did_recently(thing, min_interval)
797 if !@did_recently[thing] or @did_recently[thing] < Time.now - min_interval
798 @did_recently[thing] = Time.now
805 # send message to log table. we want these records to be transient
806 def write_log running_job
807 return if running_job[:stderr_buf_to_flush] == ''
809 # Send out to log event if buffer size exceeds the bytes per event or if
810 # it has been at least crunch_log_seconds_between_events seconds since
812 if running_job[:stderr_buf_to_flush].size > Rails.configuration.crunch_log_bytes_per_event or
813 (Time.now - running_job[:stderr_flushed_at]) >= Rails.configuration.crunch_log_seconds_between_events
815 log = Log.new(object_uuid: running_job[:job].uuid,
816 event_type: 'stderr',
817 owner_uuid: running_job[:job].owner_uuid,
818 properties: {"text" => running_job[:stderr_buf_to_flush]})
820 running_job[:events_logged] += 1
822 $stderr.puts "Failed to write logs"
823 $stderr.puts exception.backtrace
825 running_job[:stderr_buf_to_flush] = ''
826 running_job[:stderr_flushed_at] = Time.now
831 # This is how crunch-job child procs know where the "refresh" trigger file is
832 ENV["CRUNCH_REFRESH_TRIGGER"] = Rails.configuration.crunch_refresh_trigger
834 # If salloc can't allocate resources immediately, make it use our temporary
835 # failure exit code. This ensures crunch-dispatch won't mark a job failed
836 # because of an issue with node allocation. This often happens when
837 # another dispatcher wins the race to allocate nodes.
838 ENV["SLURM_EXIT_IMMEDIATE"] = Dispatcher::EXIT_TEMPFAIL.to_s