X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f5c622f3018c7282375f5a0dca26e64c9ea8d982..5603cefb38fbd2fc6493e8ccee587629e7af089e:/services/api/lib/crunch_dispatch.rb diff --git a/services/api/lib/crunch_dispatch.rb b/services/api/lib/crunch_dispatch.rb index cbdd04e61c..ce94f737a2 100644 --- a/services/api/lib/crunch_dispatch.rb +++ b/services/api/lib/crunch_dispatch.rb @@ -24,6 +24,7 @@ class CrunchDispatch @docker_bin = ENV['CRUNCH_JOB_DOCKER_BIN'] @docker_run_args = ENV['CRUNCH_JOB_DOCKER_RUN_ARGS'] + @cgroup_root = ENV['CRUNCH_CGROUP_ROOT'] @arvados_internal = Rails.configuration.git_internal_dir if not File.exists? @arvados_internal @@ -384,6 +385,10 @@ class CrunchDispatch '--job', job.uuid, '--git-dir', @arvados_internal] + if @cgroup_root + cmd_args += ['--cgroup-root', @cgroup_root] + end + if @docker_bin cmd_args += ['--docker-bin', @docker_bin] end @@ -429,7 +434,7 @@ class CrunchDispatch log_throttle_bytes_so_far: 0, log_throttle_lines_so_far: 0, log_throttle_bytes_skipped: 0, - log_throttle_partial_line_last_at: 0, + log_throttle_partial_line_last_at: Time.new(0), log_throttle_first_partial_line: true, } i.close @@ -447,10 +452,11 @@ class CrunchDispatch if running_job[:log_throttle_is_open] partial_line = false skip_counts = false - if line.start_with?('[...]') and line.end_with?('[...]') + matches = line.match(/^\S+ \S+ \d+ \d+ stderr (.*)/) + if matches and matches[1] and matches[1].start_with?('[...]') and matches[1].end_with?('[...]') partial_line = true - if Time.now > j[:log_throttle_partial_line_last_at] + Rails.configuration.crunch_log_partial_line_throttle_period - j[:log_throttle_partial_line_last_at] = Time.now + if Time.now > running_job[:log_throttle_partial_line_last_at] + Rails.configuration.crunch_log_partial_line_throttle_period + running_job[:log_throttle_partial_line_last_at] = Time.now else skip_counts = true end @@ -480,8 +486,8 @@ class CrunchDispatch 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." running_job[:log_throttle_is_open] = false - elsif partial_line and j[:log_throttle_first_partial_line] - j[:log_throttle_first_partial_line] = false + elsif partial_line and running_job[:log_throttle_first_partial_line] + running_job[:log_throttle_first_partial_line] = false message = "Rate-limiting partial segments of long lines to one every #{Rails.configuration.crunch_log_partial_line_throttle_period} seconds." end end @@ -497,6 +503,8 @@ class CrunchDispatch message += " A complete log is still being written to Keep, and will be available when the job finishes.\n" line.replace message true + elsif partial_line + false else running_job[:log_throttle_is_open] end @@ -521,7 +529,7 @@ class CrunchDispatch j[:log_throttle_lines_so_far] = 0 j[:log_throttle_bytes_skipped] = 0 j[:log_throttle_is_open] = true - j[:log_throttle_partial_line_last_at] = 0 + j[:log_throttle_partial_line_last_at] = Time.new(0) j[:log_throttle_first_partial_line] = true end